Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,173 for consistency (1.01 sec)

  1. pkg/controller/job/indexed_job_utils.go

    }
    
    func addCompletionIndexLabel(template *v1.PodTemplateSpec, index int) {
    	if template.Labels == nil {
    		template.Labels = make(map[string]string, 1)
    	}
    	// For consistency, we use the annotation batch.kubernetes.io/job-completion-index for the corresponding label as well.
    	template.Labels[batch.JobCompletionIndexAnnotation] = strconv.Itoa(index)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 00:44:53 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/Graph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/Graph.java

       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered and the graph is directed; it simply returns {@code false}. This is for
       * consistency with the behavior of {@link Collection#contains(Object)} (which does not generally
       * throw if the object cannot be present in the collection), and the desire to have this method's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	slices.Sort(filenames)
    	mcDir, err := minorChangesDir(docFS)
    	if err != nil {
    		return err
    	}
    	var errs []error
    	for _, fn := range filenames {
    		// Use path.Join for consistency with io/fs pathnames.
    		fn = path.Join(mcDir, fn)
    		// TODO(jba): check that the file mentions each feature?
    		if err := checkFragmentFile(docFS, fn); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_test.go

    		os.Exit(0)
    	}
    
    	os.Exit(runMain(m))
    }
    
    func runMain(m *testing.M) int {
    	// Cipher suites preferences change based on the architecture. Force them to
    	// the version without AES acceleration for test consistency.
    	hasAESGCMHardwareSupport = false
    
    	// Set up localPipe.
    	l, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		l, err = net.Listen("tcp6", "[::1]:0")
    	}
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults.go

    			sp.TargetPort = intstr.FromInt32(sp.Port)
    		}
    	}
    	// Defaults ExternalTrafficPolicy field for externally-accessible service
    	// to Global for consistency.
    	if service.ExternallyAccessible(obj) && obj.Spec.ExternalTrafficPolicy == "" {
    		obj.Spec.ExternalTrafficPolicy = v1.ServiceExternalTrafficPolicyCluster
    	}
    
    	if obj.Spec.InternalTrafficPolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. src/go/token/position_test.go

    			src[offs-1] = '\n'
    		}
    	}
    	return src
    }
    
    func TestPositions(t *testing.T) {
    	const delta = 7 // a non-zero base offset increment
    	fset := NewFileSet()
    	for _, test := range tests {
    		// verify consistency of test case
    		if test.source != nil && len(test.source) != test.size {
    			t.Errorf("%s: inconsistent test case: got file size %d; want %d", test.filename, len(test.source), test.size)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    //     should not precede with the endpoint, or inaccurate information would be sent which may have impacts on
    //     correctness and security.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    .filter(rap -> !allAvailableProfiles.contains(rap))
                    .collect(toSet());
    
            if (!notFoundRequiredProfiles.isEmpty()) {
                // Use SLF4J formatter for consistency with warnings reported by logger
                final String message = MessageFormatter.format(
                                "The requested profiles {} could not be activated or deactivated because they do not"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. docs/en/docs/help-fastapi.md

    * Also don't worry about style rules, there are already automatized tools checking that.
    
    And if there's any other style or consistency need, I'll ask directly for that, or I'll add commits on top with the needed changes.
    
    ### Check the code
    
    * Check and read the code, see if it makes sense, **run it locally** and see if it actually solves the problem.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top