Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 824 for reasons (0.14 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/discovery.go

    	case 2:
    		return fmt.Sprintf("%s:%d and %s:%d", reason0, reason0Cnt, reason1, reason1Cnt)
    	default:
    		return fmt.Sprintf("%s:%d and %d(%d) more reasons", reason0, reason0Cnt, len(req.Reason)-1,
    			req.Reason.Count()-reason0Cnt)
    	}
    }
    
    func doSendPushes(stopCh <-chan struct{}, semaphore chan struct{}, queue *PushQueue) {
    	for {
    		select {
    		case <-stopCh:
    			return
    		default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/generated.proto

      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/policy/v1beta1/types.go

    	// Conditions contain conditions for PDB. The disruption controller sets the
    	// DisruptionAllowed condition. The following are known values for the reason field
    	// (additional reasons could be added in the future):
    	// - SyncFailed: The controller encountered an error and wasn't able to compute
    	//               the number of allowed disruptions. Therefore no disruptions are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. api/maven-api-settings/src/main/mdo/settings.mdo

              <defaultValue>true</defaultValue>
              <description>
                Whether this proxy configuration is the active one. Note: While the type of this field
                is {@code String} for technical reasons, the semantic type is actually {@code boolean}.
                @see #isActive()
              </description>
              <type>String</type>
            </field>
            <field>
              <name>protocol</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/certificates/v1/generated.proto

      // status of the condition, one of True, False, Unknown.
      // Approved, Denied, and Failed conditions may not be "False" or "Unknown".
      optional string status = 6;
    
      // reason indicates a brief reason for the request state
      // +optional
      optional string reason = 2;
    
      // message contains a human readable message with details about the request state
      // +optional
      optional string message = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

    import org.eclipse.aether.repository.WorkspaceRepository;
    import org.eclipse.aether.util.repository.AuthenticationBuilder;
    
    /**
     * <strong>Warning:</strong> This is an internal utility class that is only public for technical reasons, it is not part
     * of the public API. In particular, this class can be changed or deleted without prior notice.
     *
     */
    public class RepositoryUtils {
    
        private static String nullify(String string) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. src/cmd/go/main.go

    // handleChdirFlag handles the flag by chdir'ing to the directory
    // and then removing that flag from the command line entirely.
    //
    // We have to handle the -C flag this way for two reasons:
    //
    //  1. Toolchain selection needs to be in the right directory to look for go.mod and go.work.
    //
    //  2. A toolchain switch later on reinvokes the new go command with the same arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. cluster/images/etcd/Makefile

    # version at a time, and patch release don't matter.
    #
    # Except from etcd-$(version) and etcdctl-$(version) binaries, we also
    # need etcd and etcdctl binaries for backward compatibility reasons.
    # That binary will be set to the last version from $(BUNDLED_ETCD_VERSIONS).
    BUNDLED_ETCD_VERSIONS?=3.4.18 3.5.14
    
    # LATEST_ETCD_VERSION identifies the most recent etcd version available.
    LATEST_ETCD_VERSION?=3.5.14
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      if (fflush(posix_file->handle) != 0)
        TF_SetStatusFromIOError(status, errno, posix_file->filename);
    }
    
    static void Sync(const TF_WritableFile* file, TF_Status* status) {
      // For historical reasons, this does the same as `Flush` at the moment.
      // TODO(b/144055243): This should use `fsync`/`sync`.
      Flush(file, status);
    }
    
    static void Close(const TF_WritableFile* file, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top