Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 965 for Avery (0.04 sec)

  1. pkg/proxy/apis/config/types.go

    	// than 0.
    	SyncPeriod metav1.Duration
    	// minSyncPeriod is the minimum period between iptables rule resyncs (e.g. '5s',
    	// '1m', '2h22m'). A value of 0 means every Service or EndpointSlice change will
    	// result in an immediate iptables resync.
    	MinSyncPeriod metav1.Duration
    }
    
    // KubeProxyIPVSConfiguration contains ipvs-related configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/ImmutableDoubleArray.java

      }
    
      /** Returns an immutable array containing all the values from {@code stream}, in order. */
      public static ImmutableDoubleArray copyOf(DoubleStream stream) {
        // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
        double[] array = stream.toArray();
        return (array.length == 0) ? EMPTY : new ImmutableDoubleArray(array);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/primitives/ImmutableLongArray.java

      }
    
      /** Returns an immutable array containing all the values from {@code stream}, in order. */
      public static ImmutableLongArray copyOf(LongStream stream) {
        // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
        long[] array = stream.toArray();
        return (array.length == 0) ? EMPTY : new ImmutableLongArray(array);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/build_xla_ops_pass.cc

    namespace tensorflow {
    namespace {
    struct DebuggingOpts {
      // If true, insert Print nodes to print every output from an XLA cluster.
      bool print_outputs;
    
      // If true, insert CheckNumerics nodes for every floating point typed input to
      // an XLA cluster.
      bool check_input_numerics;
    
      // If true, insert CheckNumerics nodes for every floating point typed output
      // from an XLA cluster.
      bool check_output_numerics;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/stackcheck.go

    	// limit is number of bytes a splittable function ensures are
    	// available on the stack. If any call chain exceeds this
    	// depth, the stack check test fails.
    	//
    	// The call to morestack in every splittable function ensures
    	// that there are at least StackLimit bytes available below SP
    	// when morestack returns.
    	limit := objabi.StackNosplit(*flagRace) - sc.callSize
    	if buildcfg.GOARCH == "arm64" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            expect:
            result.asFiles.name as Set == ['gradle-core-0.9.jar', 'gradle-launcher-0.9.jar'] as Set
            (result.asFiles.path as Set).every { it.contains('customUserHome')}
        }
    
        def usesZipDistributionInstalledIntoSpecifiedUserHomeDirAsImplementationClasspath() {
            ConnectionParameters customUserHome = DefaultConnectionParameters.builder().
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/docker.md

    Containers (mainly Linux containers) are a very **lightweight** way to package applications including all their dependencies and necessary files while keeping them isolated from other containers (other applications or components) in the same system.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

     * Easy filtering of which tests to run
     * Fine-grained control over how the tests are run
     * The opportunity to create your own test execution and test reporting tasks
    
    You do _not_ get a `Test` task for every source set you declare, since not every source set represents tests! That's why you typically need to <<#sec:custom_java_source_sets,create your own `Test` tasks>> for things like integration and acceptance tests if they can't be included with the `test` source set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/ImmutableIntArray.java

      }
    
      /** Returns an immutable array containing all the values from {@code stream}, in order. */
      public static ImmutableIntArray copyOf(IntStream stream) {
        // Note this uses very different growth behavior from copyOf(Iterable) and the builder.
        int[] array = stream.toArray();
        return (array.length == 0) ? EMPTY : new ImmutableIntArray(array);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 16:34:24 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  10. pkg/api/v1/pod/util.go

    		if len(name) == 0 {
    			// continue visiting
    			return true
    		}
    		// delegate to visitor
    		return visitor(name)
    	}
    }
    
    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top