Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 829 for reasons (0.33 sec)

  1. pkg/apis/certificates/types.go

    	// Approved, Denied, and Failed conditions may not be "False" or "Unknown".
    	// If unset, should be treated as "True".
    	// +optional
    	Status api.ConditionStatus
    	// brief reason for the request state
    	// +optional
    	Reason string
    	// human readable message with details about the request state
    	// +optional
    	Message string
    	// timestamp for the last update to this condition
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

          <trusted-artifacts>
             <trust group="dummy" name="artifact"/>
             <trust group="other" name="artifact" reason="sample trust reason"/>
             <trust group="fourth" name="artifact" version="with" file="file.jar" regex="true" reason="another sample reason"/>
             <trust group="third" name="artifact" version="with" file="file.jar" regex="true"/>
          </trusted-artifacts>
       </configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/SelectorState.java

            private final String version;
            private final String reason;
    
            private RejectedByRuleReason(String version, @Nullable String reason) {
                this.version = version;
                this.reason = reason;
            }
    
            @Override
            public String getDisplayName() {
                return version + " by rule" + (reason != null ? " because " + reason : "");
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      // the appropriate environment for a child process to execute the death
      // test, then wait for it to complete.
      enum TestRole { OVERSEE_TEST, EXECUTE_TEST };
    
      // An enumeration of the three reasons that a test might be aborted.
      enum AbortReason {
        TEST_ENCOUNTERED_RETURN_STATEMENT,
        TEST_THREW_EXCEPTION,
        TEST_DID_NOT_DIE
      };
    
      // Assumes one of the above roles.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

      // ClasLoader via its AccessControlContext. It does not seem to be possible to make a
      // URLClassLoader without capturing this reference, and it probably would not be desirable for
      // security reasons anyway. Therefore, the FRQ.close() method provides a way to stop the thread
      // explicitly. This test checks that calling that method does allow an app's ClassLoader to be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. api/maven-api-metadata/src/main/mdo/metadata.mdo

                }
    
                if ( versioning.getLastUpdated() == null || versioning.getLastUpdated().length() == 0 )
                {
                    // this should only be for historical reasons - we assume local is newer
                    versioning.setLastUpdated( v.getLastUpdated() );
                }
    
                if ( v.getLastUpdated() == null || v.getLastUpdated().length() == 0
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // +optional
      optional string messageExpression = 3;
    
      // reason provides a machine-readable validation failure reason that is returned to the caller when a request fails this validation rule.
      // The HTTP status code returned to the caller will match the reason of the reason of the first failed validation rule.
      // The currently supported reasons are: "FieldValueInvalid", "FieldValueForbidden", "FieldValueRequired", "FieldValueDuplicate".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			SETA, SETAE, SETB, SETBE, SETE, SETG, SETGE, SETL, SETLE, SETNE, SETNO, SETNP, SETNS, SETO, SETP, SETS,
    			SLDT, SMSW, STMXCSR, STR, VERR, VERW:
    			// For various reasons, libopcodes emits no suffix for these instructions.
    
    		case CRC32:
    			op += byteSizeSuffix(argBytes(&inst, inst.Args[1]))
    
    		case LGDT, LIDT, SGDT, SIDT:
    			op += byteSizeSuffix(inst.DataSize / 8)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  9. architecture/networking/pilot.md

    Primarily for historical reasons, ingestion is split into a few components.
    
    #### ConfigStore
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    manner instead of exiting. For example, on Unix systems, the crash raises
    SIGABRT to trigger a core dump.
    GOTRACEBACK=wer is like “crash” but doesn't disable Windows Error Reporting (WER).
    For historical reasons, the GOTRACEBACK settings 0, 1, and 2 are synonyms for
    none, all, and system, respectively.
    The [runtime/debug.SetTraceback] function allows increasing the
    amount of output at run time, but it cannot reduce the amount below that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top