Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for honoured (0.18 sec)

  1. cmd/os-reliable.go

    			// Windows can have both isSysErrNotDir(err) and osIsNotExist(err) returning
    			// true if the source file path contains an non-existent directory. In that case,
    			// we want to return errFileNotFound instead, which will honored in subsequent
    			// switch cases
    			return errFileAccessDenied
    		case isSysErrPathNotFound(err):
    			// This is a special case should be handled only for
    			// windows, because windows API does not return "not a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

        /**
         * The preferred version of a module (which may be an exact version or a version range).
         *
         * The preferred version of a module provides a hint when resolving the version,
         * but will not be honored in the presence of conflicting constraints.
         *
         * @return the preferred version, or empty string if no preferred version specified. Never null.
         */
        String getPreferredVersion();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      /**
       * The "s-maxage" directive is the max age for shared caches. Not to be confused with "max-age"
       * for non-shared caches, As in Firefox and Chrome, this directive is not honored by this cache.
       */
      @get:JvmName("sMaxAgeSeconds") val sMaxAgeSeconds: Int,
      val isPrivate: Boolean,
      val isPublic: Boolean,
      @get:JvmName("mustRevalidate") val mustRevalidate: Boolean,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1/types.go

    	// volumeBindingMode indicates how PersistentVolumeClaims should be
    	// provisioned and bound.  When unset, VolumeBindingImmediate is used.
    	// This field is only honored by servers that enable the VolumeScheduling feature.
    	// +optional
    	VolumeBindingMode *VolumeBindingMode `json:"volumeBindingMode,omitempty" protobuf:"bytes,7,opt,name=volumeBindingMode"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean isFullySupportsIvyRepository();
    
        /**
         * Returns true if the wrapper for this version honours the --gradle-user-home command-line option.
         */
        boolean isWrapperSupportsGradleUserHomeCommandLineOption();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/server_test.go

    			flags: []string{
    				"--leader-elect=false",
    				"--leader-elect-lease-duration=2h",
    				"--leader-elect-resource-namespace=default",
    				"--kubeconfig", configKubeconfig, // deprecated CLI arg is honored if --config is not specified
    			},
    			wantLeaderElection: &componentbaseconfig.LeaderElectionConfiguration{
    				LeaderElect:       false,                                    // from CLI args
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1/types.go

    	// Populated by the API server on creation and immutable.
    	// +optional
    	Extra map[string]ExtraValue `json:"extra,omitempty" protobuf:"bytes,6,rep,name=extra"`
    }
    
    // Built in signerName values that are honored by kube-controller-manager.
    const (
    	// "kubernetes.io/kube-apiserver-client" signer issues client certificates that can be used to authenticate to kube-apiserver.
    	// Never auto-approved by kube-controller-manager.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    If the Go program is started with either SIGHUP or SIGINT ignored
    (signal handler set to SIG_IGN), they will remain ignored.
    
    If the Go program is started with a non-empty signal mask, that will
    generally be honored. However, some signals are explicitly unblocked:
    the synchronous signals, SIGILL, SIGTRAP, SIGSTKFLT, SIGCHLD, SIGPROF,
    and, on Linux, signals 32 (SIGCANCEL) and 33 (SIGSETXID)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. cmd/api-router.go

    				// usecase where we need to make sure that
    				// minio.<namespace>.svc.<cluster_domain> is ignored
    				// by the bucketDNS style to ensure that path style
    				// is available and honored at this domain.
    				//
    				// All other `<bucket>.<namespace>.svc.<cluster_domain>`
    				// makes sure that buckets are routed through this matcher
    				// to match for `<bucket>`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            result.assertTasksNotSkipped(":compileJava", ":classes", ":jar", ":startScripts", ":distTar", ":distZip", ":assemble", ":build")
            classFile.isFile()
            jarFile.isFile()
        }
    
        def "jar manifest honours build logic inputs"() {
            given:
            buildFile << """
                plugins {
                    id 'java'
                }
    
                jar {
                    manifest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top