Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for concatenation (0.17 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope.go

    	}
    	return &genericapirequest.RequestInfo{}
    }
    
    // generateCacheKey returns a key for the cache.
    // The key is a concatenation of:
    //  0. encryptedDEKSourceType
    //  1. encryptedDEKSource
    //  2. keyID
    //  3. length of annotations
    //  4. annotations (sorted by key) - each annotation is a concatenation of:
    //     a. annotation key
    //     b. annotation value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 00:23:50 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  2. pkg/auth/authorizer/abac/abac.go

    //
    // TODO: Have policies be created via an API call and stored in REST storage.
    func NewFromFile(path string) (PolicyList, error) {
    	// File format is one map per line.  This allows easy concatenation of files,
    	// comments in files, and identification of errors by line number.
    	file, err := os.Open(path)
    	if err != nil {
    		return nil, err
    	}
    	defer file.Close()
    
    	scanner := bufio.NewScanner(file)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/quantize.mlir

    }
    
    // CHECK-LABEL: QuantizeConcat
    func.func @QuantizeConcat(tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2x!quant.uniform<u8:f32, 1.000000e-01:128>> {
    ^bb0(%arg0: tensor<1x2xf32>, %arg1: tensor<1x2xf32>):
      %0 = "tfl.concatenation"(%arg0, %arg1) {axis = 0 : i32, fused_activation_function = "NONE"} : (tensor<1x2xf32>, tensor<1x2xf32>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

          if (jdkWithJettyBoot != null) {
            return jdkWithJettyBoot
          }
    
          return Platform()
        }
    
        /**
         * Returns the concatenation of 8-bit, length prefixed protocol names.
         * http://tools.ietf.org/html/draft-agl-tls-nextprotoneg-04#page-4
         */
        fun concatLengthPrefixed(protocols: List<Protocol>): ByteArray {
          val result = Buffer()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        %1 = "tfl.reshape"(%arg1, %cst) {tac.device = "GPU", tac.inference_type = "FLOAT"} : (tensor<1xf32>, tensor<4xi32>) -> tensor<1x1x1x1xf32>
        %2 = "tfl.concatenation"(%0, %1) {axis = 3 : i32, fused_activation_function = "NONE", tac.device = "GPU", tac.inference_type = "FLOAT"} : (tensor<1x1x1x1xf32>, tensor<1x1x1x1xf32>) -> tensor<1x1x1x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  6. src/compress/gzip/gunzip_test.go

    			0x74, 0x78, 0x74, 0x00, 0xcb, 0x48, 0xcd, 0xc9,
    			0xc9, 0x57, 0x28, 0xcf, 0x2f, 0xca, 0x49, 0xe1,
    			0x02, 0x00, 0x2d, 0x3b, 0x08, 0xaf, 0x0c, 0x00,
    			0x00, 0x00,
    		},
    		nil,
    	},
    	{ // concatenation
    		"hello.txt",
    		"hello.txt x2",
    		"hello world\n" +
    			"hello world\n",
    		[]byte{
    			0x1f, 0x8b, 0x08, 0x08, 0xc8, 0x58, 0x13, 0x4a,
    			0x00, 0x03, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x2e,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 15:06:07 UTC 2022
    - 19.5K bytes
    - Viewed (0)
  7. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    	EmptyNodeName types.NodeName = types.NodeName("")
    )
    
    // NestedPendingOperations defines the supported set of operations.
    type NestedPendingOperations interface {
    
    	// Run adds the concatenation of volumeName, podName, and nodeName to the list
    	// of running operations and spawns a new go routine to run
    	// generatedOperations.
    
    	// volumeName, podName, and nodeName collectively form the operation key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. src/regexp/syntax/regexp.go

    	OpQuest                        // matches Sub[0] zero or one times
    	OpRepeat                       // matches Sub[0] at least Min times, at most Max (Max == -1 is no limit)
    	OpConcat                       // matches concatenation of Subs
    	OpAlternate                    // matches alternation of Subs
    )
    
    const opPseudo Op = 128 // where pseudo-ops start
    
    // Equal reports whether x and y have identical structure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/runtime/malloc_test.go

    		for i := 0; i < 10; i++ {
    			b[i] = byte(i) + '0'
    		}
    		s := "foo" + string(b)
    		if want := "foo0123456789"; s != want {
    			t.Fatalf("want %v, got %v", want, s)
    		}
    	})
    	// Only string concatenation allocates.
    	if n != 1 {
    		t.Fatalf("want 1 allocation, got %v", n)
    	}
    }
    
    func TestTinyAlloc(t *testing.T) {
    	if runtime.Raceenabled {
    		t.Skip("tinyalloc suppressed when running in race mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/README

    	The output (and any error) from each command is printed to
    	the log in the order in which the commands were started.
    	After the call to 'wait', the script's stdout and stderr
    	buffers contain the concatenation of the background
    	commands' outputs.
    
    
    
    The available conditions are:
    [GOARCH:*]
    	runtime.GOARCH == <suffix>
    [GODEBUG:*]
    	GODEBUG contains <suffix>
    [GOEXPERIMENT:*]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top