Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 324 for human (0.12 sec)

  1. common-protos/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
      // +optional
      optional string reason = 4;
    
      // A human readable message indicating details about the transition.
      // +optional
      optional string message = 5;
    }
    
    // DaemonSetList is a collection of daemon sets.
    message DaemonSetList {
      // Standard list metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. pkg/kube/krt/core.go

    // we only expose some functions to external users for simplicity.
    type internalCollection[T any] interface {
    	Collection[T]
    
    	// Name is a human facing name for this collection.
    	// Note this may not be universally unique
    	name() string
    	// Uid is an internal unique ID for this collection. MUST be globally unique
    	uid() collectionUID
    
    	dump()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                }
            }
    
            LOGGER.debug("Using daemon args: {}", daemonArgs);
    
            daemonArgs.add("org.gradle.launcher.daemon.bootstrap.GradleDaemon");
            // Version isn't used, except by a human looking at the output of jps.
            daemonArgs.add(GradleVersion.current().getVersion());
    
            // Serialize configuration to daemon via the process' stdin
            StreamByteBuffer buffer = new StreamByteBuffer();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

            when:
            render unsupportedNotation {
                type('Human').property('face')
                value('visible', 'person')
                candidates("a mask", "a vaccine")
                cannotBeConvertedTo('safe person')
                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Human' property 'face' has unsupported value 'visible'.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  6. src/encoding/gob/decoder.go

    	dec.err = nil
    	id := dec.decodeTypeSequence(false)
    	if dec.err == nil {
    		dec.decodeValue(id, v)
    	}
    	return dec.err
    }
    
    // If debug.go is compiled into the program, debugFunc prints a human-readable
    // representation of the gob data read from r by calling that file's Debug function.
    // Otherwise it is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

              h++
            }
          }
          delta++
          n++
        }
    
        return true
      }
    
      /**
       * Converts a punycode-encoded domain name with `.`-separated labels into a human-readable
       * Internationalized Domain Name.
       */
      fun decode(string: String): String? {
        var pos = 0
        val limit = string.length
        val result = Buffer()
    
        while (pos < limit) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/authentication.go

    const convertedPeerAuthenticationPrefix = "converted_peer_authentication_" // use '_' character since those are illegal in k8s names
    
    // String converts MutualTLSMode to human readable string for debugging.
    func (mode MutualTLSMode) String() string {
    	switch mode {
    	case MTLSDisable:
    		return "DISABLE"
    	case MTLSPermissive:
    		return "PERMISSIVE"
    	case MTLSStrict:
    		return "STRICT"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

            wrapper.collectClasses(builder);
            return builder.build();
        }
    
        public String getName() {
            return wrapper.getRepresentation(true);
        }
    
        /**
         * Returns a human-readable name for the type.
         */
        public String getDisplayName() {
            return wrapper.getRepresentation(false);
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

            withProject("attachConsole", """
                #include <stdio.h>
                #include <stdlib.h>
                #include <windows.h>
    
                // Convenience method for getting a human readable form of the last error.
                void ErrorExit(const char *func){
                    DWORD errCode = GetLastError();
                    char *err;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top