Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 102 for selectgo (0.17 sec)

  1. src/cmd/go/internal/modload/init.go

    	// so in order to ensure that the build list itself is reproducible,
    	// we need sums for every go.mod in the graph (regardless of whether
    	// that version is selected).
    	keep := make(map[module.Version]bool)
    
    	// Add entries for modules in the build list with paths that are prefixes of
    	// paths of loaded packages. We need to retain sums for all of these modules —
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if err != nil {
    			return nil, errors.NewServiceUnavailable(err.Error())
    		}
    	}
    
    	// determine the namespace and name scope of the watch, first from the request, secondarily from the field selector
    	scope := namespacedName{}
    	if requestNamespace, ok := request.NamespaceFrom(ctx); ok && len(requestNamespace) > 0 {
    		scope.namespace = requestNamespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    	// In FAILOVER mode, endpoint selection will prefer endpoints that match all preferences, but failover to groups of endpoints
    	// that match less (or, eventually, none) preferences.
    	// For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2.go

    				if !latest.header.FreeVersion() {
    					nVersions++
    				}
    			}
    		}
    
    		// Remove from all streams up until latest modtime or if selected.
    		for i, vers := range versions {
    			for _, ver := range vers {
    				// Truncate later modtimes, not selected.
    				if ver.header.ModTime > latest.header.ModTime {
    					versions[i] = versions[i][1:]
    					continue
    				}
    				// Truncate matches
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    	}
    	runSimulationTest(t, nil, xds.FakeOptions{}, simulationTest{
    		kubeConfig: `apiVersion: v1
    kind: Service
    metadata:
      name: headless
      namespace: default
    spec:
      clusterIP: None
      selector:
        app: headless
      ports:` + ports + `
    ---
    apiVersion: discovery.k8s.io/v1
    kind: EndpointSlice
    metadata:
      name: headless
      namespace: default
      labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Added flag to `kubectl logs` called `--all-pods` to get all pods from a object that uses a pod selector. ([#124732](https://github.com/kubernetes/kubernetes/pull/124732), [@cmwylie19](https://github.com/cmwylie19)) [SIG CLI and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(cert)
    
    	config := testConfig.Clone()
    	// Use GetClientCertificate to bypass the client certificate selection logic.
    	config.GetClientCertificate = func(*CertificateRequestInfo) (*Certificate, error) {
    		return &Certificate{
    			Certificate: [][]byte{testRSAPSSCertificate},
    			PrivateKey:  testRSAPrivateKey,
    		}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    button,
    input {
    	line-height: normal;
    }
    
    /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */
    button,
    select {
    	text-transform: none;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

    Configuration:  class='class org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration'  name='conf'  hashcode='${configuration.hashCode()}'  role='Legacy'
    Current Usage:
    \tConsumable - this configuration can be selected by another project as a dependency
    \tResolvable - this configuration can be resolved by this project to a set of files
    \tDeclarable - this configuration can have dependencies added to it
    Local Dependencies:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

          --v="${LOG_LEVEL}" \
          --vmodule="${LOG_SPEC}" \
          --audit-policy-file="${AUDIT_POLICY_FILE}" \
          --audit-log-path="${LOG_DIR}/kube-apiserver-audit.log" \
          --cert-dir="${CERT_DIR}" \
          --egress-selector-config-file="${EGRESS_SELECTOR_CONFIG_FILE:-}" \
          --client-ca-file="${CERT_DIR}/client-ca.crt" \
          --kubelet-client-certificate="${CERT_DIR}/client-kube-apiserver.crt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top