Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for unnamed (0.1 sec)

  1. pilot/pkg/networking/core/listener_builder_test.go

    	}{
    		{
    			name:   "permissive",
    			config: "",
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// But should see for passthrough or unnamed ports
    				81:   false,
    				1000: false,
    			},
    			tls: map[int]bool{
    				// Permissive mode: inspector is set everywhere
    				80:   false,
    				82:   false,
    				81:   false,
    				1000: false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api.go

    	//
    	//     *syntax.ImportDecl    *PkgName for imports without renames
    	//     *syntax.CaseClause    type-specific *Var for each type switch case clause (incl. default)
    	//     *syntax.Field         anonymous parameter *Var (incl. unnamed results)
    	//
    	Implicits map[syntax.Node]Object
    
    	// Selections maps selector expressions (excluding qualified identifiers)
    	// to their corresponding selections.
    	Selections map[*syntax.SelectorExpr]*Selection
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. src/go/types/unify.go

    			if u.nify(x, y, mode, p) {
    				// We have a match, possibly through underlying types.
    				xi := asInterface(x)
    				yi := asInterface(y)
    				xn := asNamed(x) != nil
    				yn := asNamed(y) != nil
    				// If we have two interfaces, what to do depends on
    				// whether they are named and their method sets.
    				if xi != nil && yi != nil {
    					// Both types are interfaces.
    					// If both types are defined types, they must be identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    	// protocol detection is disabled for gateway and use_downstream_protocol is used under protocol
    	// detection for cluster to select upstream connection protocol when the service port is unnamed.
    	// use_downstream_protocol should be disabled for gateway; while it sort of makes sense there, even
    	// without sniffing, a concern is that clients will do ALPN negotiation, and we always advertise
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/unify.go

    			if u.nify(x, y, mode, p) {
    				// We have a match, possibly through underlying types.
    				xi := asInterface(x)
    				yi := asInterface(y)
    				xn := asNamed(x) != nil
    				yn := asNamed(y) != nil
    				// If we have two interfaces, what to do depends on
    				// whether they are named and their method sets.
    				if xi != nil && yi != nil {
    					// Both types are interfaces.
    					// If both types are defined types, they must be identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          // should stay with type FLOAT32.
          // If the tensor is a bias, it should have type FLOAT32.
          //
          // Check with float_tensor name since quantized tensor
          // may be renamed.
          if (float_tensor->name()->str() == "conv_bias") {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT32);
          } else if (IsModelInputOrOutput(output_model, i)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    //   K8S root.
    
    var (
    	// LocalCertDir replaces the "cert-chain", "signing-cert" and "signing-key" flags in citadel - Istio installer is
    	// requires a secret named "cacerts" with specific files inside.
    	LocalCertDir = env.Register("ROOT_CA_DIR", "./etc/cacerts",
    		"Location of a local or mounted CA root")
    
    	useRemoteCerts = env.Register("USE_REMOTE_CERTS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    						tillOffset, DefaultBitrotAlgorithm, erasure.ShardSize())
    				}
    			}
    
    			// Heal each part. erasure.Heal() will write the healed
    			// part to .minio/tmp/uuid/ which needs to be renamed
    			// later to the final location.
    			err = erasure.Heal(ctx, writers, readers, partSize, prefer)
    			closeBitrotReaders(readers)
    			closeBitrotWriters(writers)
    			if err != nil {
    				return result, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		option. Packages named main are ignored.
    
    	-buildmode=exe
    		Build the listed main packages and everything they import into
    		executables. Packages not named main are ignored.
    
    	-buildmode=pie
    		Build the listed main packages and everything they import into
    		position independent executables (PIE). Packages not named
    		main are ignored.
    
    	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top