Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,173 for consistency (0.14 sec)

  1. src/strings/strings_test.go

    	upper := ToUpper(s)
    	lower := ToLower(s)
    
    	// Consistency checks
    	if n := utf8.RuneCountInString(upper); n != numRunes {
    		t.Error("rune count wrong in upper:", n)
    	}
    	if n := utf8.RuneCountInString(lower); n != numRunes {
    		t.Error("rune count wrong in lower:", n)
    	}
    	if !equal("ToUpper(upper)", ToUpper(upper), upper, t) {
    		t.Error("ToUpper(upper) consistency fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

            AbstractFuture<? extends V> other = (AbstractFuture<? extends V>) delegate;
            value = other.value;
            throwable = other.throwable;
            // don't copy the mayInterruptIfRunning bit, for consistency with the server, to ensure that
            // interruptTask() is called if and only if the bit is true and because we cannot infer the
            // interrupt status from non AbstractFuture futures.
            state = other.state;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                          is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency'
                          type: string
                        uid:
                          description: 'UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    }
    
    func (p *PrefixTransformer) GetReadsAndReset() uint64 {
    	return atomic.SwapUint64(&p.reads, 0)
    }
    
    // reproducingTransformer is a custom test-only transformer used purely
    // for testing consistency.
    // It allows for creating predefined objects on TransformFromStorage operations,
    // which allows for precise in time injection of new objects in the middle of
    // read operations.
    type reproducingTransformer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/os/types_windows.go

    	// Note that POSIX only defines the semantics for symlinks, not for
    	// mount points or other surrogate reparse points, but we treat them
    	// the same way for consistency. Also, mount points can contain infinite
    	// loops, so it is not safe to walk them without special handling.
    	if !fs.isReparseTagNameSurrogate() {
    		if fs.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/BaseGraph.java

       * edges().contains(endpoints)}.
       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered; it simply returns 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 behavior be compatible with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/BaseGraph.java

       * edges().contains(endpoints)}.
       *
       * <p>Unlike the other {@code EndpointPair}-accepting methods, this method does not throw if the
       * endpoints are unordered; it simply returns 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 behavior be compatible with
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         *
         * @since 6.7
         */
        JavaToolchainSpec toolchain(Action<? super JavaToolchainSpec> action);
    
        /**
         * Configure the dependency resolution consistency for this Java project.
         *
         * @param action the configuration action
         *
         * @since 6.8
         */
        @Incubating
        void consistentResolution(Action<? super JavaResolutionConsistency> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableList.java

        return CollectCollectors.toImmutableList();
      }
    
      /**
       * Returns the empty immutable list. This list behaves and performs comparably to {@link
       * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your
       * code.
       *
       * <p><b>Performance note:</b> the instance returned is a singleton.
       */
      // Casting to any type is safe because the list will never hold any elements.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/fake.go

    		}
    		// setup default namespace if not defined
    		for _, c := range configs {
    			if c.Namespace == "" {
    				c.Namespace = "default"
    			}
    			// Set creation timestamp to same time for all of them for consistency.
    			// If explicit setting is needed it can be set in the yaml
    			if c.CreationTimestamp.IsZero() {
    				c.CreationTimestamp = t0
    			}
    			cfgs = append(cfgs, c)
    		}
    	}
    	return cfgs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top