Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 207 for nfail (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <1> Makes the `myProperty` project property available via a `myProperty` delegated property — the project property must exist in this case, otherwise the build will fail when the build script attempts to use the `myProperty` value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // for each duplicate field that is encountered. The request will
      // still succeed if there are no other errors, and will only persist
      // the last of any duplicate fields. This is the default in v1.23+
      // - Strict: This will fail the request with a BadRequest error if
      // any unknown fields would be dropped from the object, or if any
      // duplicate fields are present. The error returned from the server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // for each duplicate field that is encountered. The request will
      // still succeed if there are no other errors, and will only persist
      // the last of any duplicate fields. This is the default in v1.23+
      // - Strict: This will fail the request with a BadRequest error if
      // any unknown fields would be dropped from the object, or if any
      // duplicate fields are present. The error returned from the server
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                ModelBuildingRequest 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: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    		// get everything, so crash loudly.
    		fail := u.flags&(unwindPrintErrors|unwindSilentErrors) == 0
    		doPrint := u.flags&unwindSilentErrors == 0
    		if doPrint && gp.m.incgo && f.funcID == abi.FuncID_sigpanic {
    			// We can inject sigpanic
    			// calls directly into C code,
    			// in which case we'll see a C
    			// return PC. Don't complain.
    			doPrint = false
    		}
    		if fail || doPrint {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    		base += arenaLimit - arenaBase
    		npage -= (arenaLimit - arenaBase) / pageSize
    	}
    	return
    }
    
    // tryAllocMSpan attempts to allocate an mspan object from
    // the P-local cache, but may fail.
    //
    // h.lock need not be held.
    //
    // This caller must ensure that its P won't change underneath
    // it during this function. Currently to ensure that we enforce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    -injector.istio.io clientConfig: service: name: istiod-1-10-0 namespace: istio-system path: "/inject" port: 443 caBundle: "" sideEffects: None rules: - operations: [ "CREATE" ] apiGroups: [""] apiVersions: ["v1"] resources: ["pods"] failurePolicy: Fail admissionReviewVersi: ["v1beta1", "v1"] namespaceSelector: matchExpressions: - key: istio.io/rev operator: In values: - "1-10-0" - key: istio-injection operator: DoesNotExist objectSelector: matchExpressions: - key: sidecar.istio.io/inject operator:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectedRequeueDuration:    1*time.Hour - 1*time.Minute + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Controller should fail to schedule these, as there are too many missed starting times
    		// and either no deadline or a too long deadline.
    		"prev ran but done, long overdue, not past deadline, A": {
    			concurrencyPolicy:          "Allow",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				},
    			},
    			HboneMtlsPort: 15008,
    		}
    	}
    	workloads := s.lookup(s.podXdsName(key))
    	if len(workloads) < 1 {
    		t.Log("no workloads provided, assertion must fail")
    		t.Fail()
    	}
    	for _, workload := range workloads {
    		assert.Equal(t, expectedAddress.String(), workload.GetWorkload().GetWaypoint().String())
    	}
    }
    
    func TestUpdateWaypointForWorkload(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    			// read quorum is returned when the object is visibly
    			// present but its unreadable, we simply ask the writes to
    			// schedule to this pool instead. If there is no quorum
    			// it will fail anyways, however if there is quorum available
    			// with enough disks online but sufficiently inconsistent to
    			// break parity threshold, allow them to be overwritten
    			// or allow new versions to be added.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top