Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SIMPLE (0.09 sec)

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

    		if found {
    			if alpnOverride.GetStringValue() != "false" {
    				t.Errorf("alpn_override:%s tlsMode:%s, should be false for either TLS mode SIMPLE or MUTUAL", alpnOverride, tlsMode)
    			}
    		} else {
    			t.Errorf("alpn_override metadata should be written for either TLS mode SIMPLE or MUTUAL")
    		}
    	} else if ok {
    		alpnOverride, found := istio.Fields[util.AlpnOverrideMetadataKey]
    		if found {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			Host: "*.example.org",
    			TrafficPolicy: &networking.TrafficPolicy{
    				LoadBalancer: &networking.LoadBalancerSettings{
    					LbPolicy: &networking.LoadBalancerSettings_Simple{
    						Simple: networking.LoadBalancerSettings_ROUND_ROBIN,
    					},
    				},
    			},
    		},
    	})
    
    	c := xdstest.ExtractCluster("outbound|8080||*.example.org",
    		clusters)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    		// If tls mode is SIMPLE or MUTUAL/OPTIONL_MUTUAL, and CredentialName is specified, credentials are fetched
    		// remotely. ServerCertificate and CaCertificates fields are not required.
    		return
    	}
    	if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    		if tls.ServerCertificate == "" {
    			v = AppendValidation(v, fmt.Errorf("SIMPLE TLS requires a server certificate"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      int dim_size = rt.getDimSize(0);
    
      // Worklist to direct partial evaluation.
      SmallVector<ValuePort, 4> worklist;
    
      // Simple evaluator that attempts to partially evaluate the input value even
      // if unable to evaluate the complete output. Below follows a simple stack
      // based evaluation where it queries what operands/part of operands need to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

    #
    # The following certificate pairs are created:
    #
    #  - ca (the cluster's certificate authority)
    #  - server
    #  - kubelet
    #  - kubecfg (for kubectl)
    #
    # TODO(roberthbailey): Replace easyrsa with a simple Go program to generate
    # the certs that we need.
    #
    # Assumed vars
    #   KUBE_TEMP
    #   MASTER_NAME
    #
    # Vars set:
    #   CERT_DIR
    #   CA_CERT_BASE64
    #   MASTER_CERT_BASE64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let dependentDialects = ["mlir::tf_executor::TensorFlowExecutorDialect"];
    }
    
    def SimpleTFDeviceAssignmentPass : Pass<"tf-simple-device-assignment", "mlir::func::FuncOp"> {
      let summary = "Simple device assignment in TF dialect.";
      let constructor = "TF::CreateSimpleTFDeviceAssignmentPass()";
      let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    
    	// Write action graph, without timing information, in case we fail and exit early.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    		indexesToAdd                    []int
    		podsWithDelayedDeletionPerIndex map[int]*v1.Pod
    		wantIndexesToAdd                []int
    		wantRemainingTime               time.Duration
    	}{
    		"simple index creation": {
    			indexesToAdd:     []int{1, 3},
    			wantIndexesToAdd: []int{1, 3},
    		},
    		"subset of indexes can be recreated now": {
    			indexesToAdd: []int{1, 3},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    	case objabi.R_ADDROFF, objabi.R_METHODOFF, objabi.R_ADDRCUOFF,
    		objabi.R_SIZE, objabi.R_CONST, objabi.R_GOTOFF:
    		return rr, false
    	}
    	return rr, true
    }
    
    // ExtrelocSimple creates a simple external relocation from r, with the same
    // symbol and addend.
    func ExtrelocSimple(ldr *loader.Loader, r loader.Reloc) loader.ExtReloc {
    	var rr loader.ExtReloc
    	rs := r.Sym()
    	rr.Xsym = rs
    	rr.Xadd = r.Add()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// sourcesReady records the sources seen by the kubelet, it is thread-safe.
    	sourcesReady config.SourcesReady
    
    	// Optional, defaults to /logs/ from /var/log
    	logServer http.Handler
    	// Optional, defaults to simple Docker implementation
    	runner kubecontainer.CommandRunner
    
    	// cAdvisor used for container information.
    	cadvisor cadvisor.Interface
    
    	// Set to true to have the node register itself with the apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top