Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 347 for JSpecify (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    			expectedWindowsConfig: nil,
    			expectedError:         fmt.Errorf("pod must not contain any HostProcess containers if Pod's WindowsOptions.HostProcess is set to false"),
    		},
    		{
    			name: "Pod's security context doesn't specify HostProcess containers but Container's security context does",
    			podSpec: &v1.PodSpec{
    				HostNetwork: true,
    				Containers: []v1.Container{{
    					Name: containerName,
    					SecurityContext: &v1.SecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                        publicType, implementationRegistration.getSource()));
                }
                if (managedPublicType) {
                    throw new IllegalArgumentException(String.format("Cannot specify default implementation for managed type '%s'", publicType));
                }
                if (Modifier.isAbstract(implementationType.getConcreteClass().getModifiers())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. cmd/postpolicyform.go

    		}
    	}
    
    	if len(checkHeader) != 0 {
    		logKeys := make([]string, 0, len(checkHeader))
    		for key := range checkHeader {
    			logKeys = append(logKeys, key)
    		}
    		return fmt.Errorf("Each form field that you specify in a form (except %s) must appear in the list of conditions.", strings.Join(logKeys, ", "))
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/gc.go

    	if root.Package.DefaultGODEBUG != "" {
    		ldflags = append(ldflags, "-X=runtime.godebugDefault="+root.Package.DefaultGODEBUG)
    	}
    
    	// If the user has not specified the -extld option, then specify the
    	// appropriate linker. In case of C++ code, use the compiler named
    	// by the CXX environment variable or defaultCXX if CXX is not set.
    	// Else, use the CC environment variable and defaultCC as fallback.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

     *
     * <p>A test class or test method can be annotated with the following annotations to specify which versions the test is compatible with:
     * </p>
     *
     * <ul>
     *     <li>{@link ToolingApiVersion} - specifies the tooling API consumer versions that the test is compatible with.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    func NewCertAndKey(caCert *x509.Certificate, caKey crypto.Signer, config *CertConfig) (*x509.Certificate, crypto.Signer, error) {
    	if len(config.Usages) == 0 {
    		return nil, nil, errors.New("must specify at least one ExtKeyUsage")
    	}
    
    	key, err := NewPrivateKey(config.EncryptionAlgorithm)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to create private key")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    		GitTreeState: "Dirty",
    	}
    }
    
    // generateSelfSignedCertKey creates a self-signed certificate and key for the given host.
    // Host may be an IP or a DNS name
    // You may also specify additional subject alt names (either ip or dns names) for the certificate
    func generateSelfSignedCertKey(host string, alternateIPs []net.IP, alternateDNS []string) ([]byte, []byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. src/main/config/openapi/openapi-user.yaml

              description: Language
              required: false
              schema:
                type: string
                example: en
            - name: preference
              in: query
              description: String to specify a shard for searching
              required: false
              schema:
                type: string
                example: abc
            - name: callback
              in: query
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    	//
    	// (This feature is expected to be used only by gopls.
    	// Longer term, the go command may become the sole program
    	// responsible for uploading.)
    	Upload bool
    
    	// TelemetryDir, if set, will specify an alternate telemetry
    	// directory to write data to. If not set, it uses the default
    	// directory.
    	// This field is intended to be used for isolating testing environments.
    	TelemetryDir string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top