Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 908 for consistency (0.18 sec)

  1. 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)
  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. 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)
  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 (1)
  5. 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)
  6. 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. 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 (1)
  8. 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)
  9. pkg/util/iptables/testing/parse.go

    // *match* or *don't match* that value). But string-valued parameters that can't be
    // negated use `IPTablesValue` rather than `string` too, just for API consistency.
    //
    // Parameters that don't take a value are stored as `*bool`, where the value is `nil` if
    // the parameter was not present, `&true` if the parameter was present, or `&false` if the
    // parameter was present but negated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/controller/repair.go

    }
    
    // doRunOnce verifies the state of the port allocations and returns an error if an unrecoverable problem occurs.
    func (c *Repair) doRunOnce() error {
    	// TODO: (per smarterclayton) if Get() or ListServices() is a weak consistency read,
    	// or if they are executed against different leaders,
    	// the ordering guarantee required to ensure no port is allocated twice is violated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top