Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 207 for nfail (0.07 sec)

  1. src/crypto/tls/common.go

    	// might be rejected if used.
    	SupportedVersions []uint16
    
    	// Conn is the underlying net.Conn for the connection. Do not read
    	// from, or write to, this connection; that will cause the TLS
    	// connection to fail.
    	Conn net.Conn
    
    	// config is embedded by the GetCertificate or GetConfigForClient caller,
    	// for use with SupportsCertificate.
    	config *Config
    
    	// ctx is the context of the handshake that is in progress.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	// we are making a conservative decision: filters like resources and inter-pod
    	// anti-affinity are more likely to fail when the nominated pods are treated
    	// as running, while filters like pod affinity are more likely to fail when
    	// the nominated pods are treated as not running. We can't just assume the
    	// nominated pods are running because they are not running right now and in fact,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    			t.Errorf("#%d: MarshalIndent:\nGot:%s\nWant:\n%s", i, got, want)
    		}
    	}
    }
    
    type limitedBytesWriter struct {
    	w      io.Writer
    	remain int // until writes fail
    }
    
    func (lw *limitedBytesWriter) Write(p []byte) (n int, err error) {
    	if lw.remain <= 0 {
    		println("error")
    		return 0, errors.New("write limit hit")
    	}
    	if len(p) > lw.remain {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		nil, &daclSize, nil, &saclSize, nil, &ownerSize, nil, &groupSize)
    	switch err {
    	case ERROR_INSUFFICIENT_BUFFER:
    	case nil:
    		// makeAbsoluteSD is expected to fail, but it succeeds.
    		return nil, ERROR_INTERNAL_ERROR
    	default:
    		return nil, err
    	}
    	if absoluteSDSize > 0 {
    		absoluteSD = (*SECURITY_DESCRIPTOR)(unsafe.Pointer(&make([]byte, absoluteSDSize)[0]))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                ModelBuilderRequest request) {
            // We only check for groupId/artifactId/version/classifier cause if there is another
            // module with the same groupId/artifactId/version/classifier this will fail the build
            // earlier like "Project '...' is duplicated in the reactor.
            // So it is sufficient to check only groupId/artifactId/version/classifier and not the
            // packaging type.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		t.Errorf("Unexpected failure during updated: %v", err)
    	}
    
    	prec := storage.NewUIDPreconditions("myUID")
    	// Although originalPod passes the precondition, its delete would fail due to conflict.
    	// The 2nd try with updatedPod would fail the precondition.
    	out := &example.Pod{}
    	err := store.Delete(ctx, key, out, prec, storage.ValidateAllObjectFunc, originalPod)
    	if err == nil || !storage.IsInvalidObj(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. tests/integration/security/authz_test.go

    									allow: true,
    								},
    								testCase{
    									path:  fmt.Sprintf("/policy-system-%s", to.Config().Service),
    									allow: true,
    								})
    
    							// The workload-specific paths should fail for another service (just add a single test case).
    							for _, svc := range apps.Ns1.All {
    								if svc.Config().Service != to.Config().Service {
    									cases = append(cases,
    										testCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    	informers.Core().V1().Pods().Informer().GetIndexer().Add(newPod("pod1", rs, v1.PodRunning, nil, false))
    	informers.Core().V1().Pods().Informer().GetIndexer().Add(newPod("pod2", rs, v1.PodRunning, nil, false))
    	// let both patches fail. The rs controller will assume it fails to take
    	// control of the pods and requeue to try again.
    	fakePodControl.Err = fmt.Errorf("fake Error")
    	rsKey := GetKey(rs, t)
    	err := processSync(ctx, manager, rsKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation.go

    		// to the pod hostname when indexed job create pods.
    		// The index could be maximum `.spec.completions-1`
    		// If we don't validate this here, the indexed job will fail to create pods later.
    		maximumPodHostname := fmt.Sprintf("%s-%d", job.ObjectMeta.Name, *job.Spec.Completions-1)
    		if errs := apimachineryvalidation.IsDNS1123Label(maximumPodHostname); len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top