Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for BC (0.13 sec)

  1. docs/sts/client-grants.py

    boto3.set_stream_logger('boto3.resources', logging.DEBUG)
    
    bc_session = get_session()
    bc_session.get_component('credential_provider').insert_before(
        'env',
        ClientGrantsCredentialProvider('NZLOOFRSluw9RfIkuHGqfk1HFp4a',
                                       '0Z4VTG8uJBSekn42HE40DK9vQb4a'),
    )
    
    boto3_session = Session(botocore_session=bc_session)
    s3 = boto3_session.resource('s3', endpoint_url='http://localhost:9000')
    
    Python
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 23 18:58:53 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  2. internal/s3select/sql/stringfuncs_test.go

    		{"abcd", "bcd", true, "", true},
    		{"abcd", "abcd", false, "", true},
    		{"abcd", "abcd", true, "", true},
    		{"abcd", "ab", false, "cd", true},
    		{"abcd", "ab", true, "cd", true},
    		{"abcd", "bc", false, "", false},
    		{"abcd", "bc", true, "d", true},
    	}
    
    	for i, tc := range matcherCases {
    		res, ok := matcher(tc.iText, tc.iPat, tc.iHasLeadingPercent)
    		if res != tc.resultExpected || ok != tc.matchExpected {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Verify the supported forms of bcctr[l]
    	BC $20,CR0LT,CTR                // 4e800420
    	BC $20,CR0GT,CTR                // 4e810420
    	BC 20,CR0LT,CTR                 // BC $20,CR0LT,CTR // 4e800420
    	BC 20,undefined_symbol,CTR      // BC $20,CR0LT,CTR // 4e800420
    	BC 20,undefined_symbol+1,CTR    // BC $20,CR0GT,CTR // 4e810420
    	JMP CTR                         // 4e800420
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/graph/TraverserTest.java

          createDirectedGraph("ab", "bc", "cd", "da");
    
      /**
       * Same as {@link #CYCLE_GRAPH}, but with an extra a->c edge.
       *
       * <pre>{@code
       * |--------------|
       * v              |
       * a -> b -> c -> d
       * |         ^
       * |---------|
       * }</pre>
       */
      private static final SuccessorsFunction<Character> TWO_CYCLES_GRAPH =
          createDirectedGraph("ab", "ac", "bc", "cd", "da");
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 47.5K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

            if (conscrypt != null) {
              return conscrypt
            }
          }
    
          if (isBouncyCastlePreferred) {
            val bc = BouncyCastlePlatform.buildIfSupported()
    
            if (bc != null) {
              return bc
            }
          }
    
          if (isOpenJSSEPreferred) {
            val openJSSE = OpenJSSEPlatform.buildIfSupported()
    
            if (openJSSE != null) {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 9.8K bytes
    - Viewed (1)
  6. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    # URL spec forbids the following.
    # https://www.w3.org/Bugs/Public/show_bug.cgi?id=24257
    http://\uff05\uff14\uff11.com
    http://%ef%bc%85%ef%bc%94%ef%bc%91.com
    
    # ...%00 in fullwidth should fail (also as escaped UTF-8 input)
    http://\uff05\uff10\uff10.com
    http://%ef%bc%85%ef%bc%90%ef%bc%90.com
    
    # Basic IDN support, UTF-8 and UTF-16 input should be converted to IDN
    http://\u4f60\u597d\u4f60\u597d  s:http p:/ h:xn--6qqa088eba
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/asm.go

    				// into a constant. E.g:
    				//   BC 4,...
    				// into
    				//   BC $4,...
    				prog.From = obj.Addr{
    					Type:   obj.TYPE_CONST,
    					Offset: p.getConstant(prog, op, &a[0]),
    				}
    
    			}
    
    			// Likewise, fixup usage like:
    			//   BC x,LT,...
    			//   BC x,foo+2,...
    			//   BC x,4
    			//   BC x,$5
    			// into
    			//   BC x,CR0LT,...
    			//   BC x,CR0EQ,...
    			//   BC x,CR1LT,...
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            this.errorContextCount = buffer[ bufferIndex + 2 ];
            bufferIndex += 4;
    
            int bc = SMBUtil.readInt4(buffer, bufferIndex);
            bufferIndex += 4;
    
            if ( bc > 0 ) {
                this.errorData = new byte[bc];
                System.arraycopy(buffer, bufferIndex, this.errorData, 0, bc);
                bufferIndex += bc;
            }
            return bufferIndex - start;
        }
    
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java

        InterruptibleTask<@Nullable Void> task =
            new InterruptibleTask<@Nullable Void>() {
              @Override
              @Nullable Void runInterruptibly() throws Exception {
                BrokenChannel bc = new BrokenChannel();
                bc.doBegin();
                isInterruptibleRegistered.countDown();
                new CountDownLatch(1).await(); // the interrupt will wake us up
                return null;
              }
    
              @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/TraverserTest.java

          createDirectedGraph("ab", "bc", "cd", "da");
    
      /**
       * Same as {@link #CYCLE_GRAPH}, but with an extra a->c edge.
       *
       * <pre>{@code
       * |--------------|
       * v              |
       * a -> b -> c -> d
       * |         ^
       * |---------|
       * }</pre>
       */
      private static final SuccessorsFunction<Character> TWO_CYCLES_GRAPH =
          createDirectedGraph("ab", "ac", "bc", "cd", "da");
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 47.5K bytes
    - Viewed (0)
Back to top