Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for secondArg (0.18 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        void hasSecondaryVariantsLegend() {
            outputContains("(*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.")
        }
    
        void doesNotHaveSecondaryVariantsLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompoundOrdering.java

      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Iterable<? extends Comparator<? super T>> comparators) {
        this.comparators =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcBind.java

            buf.dec_ndr_short(); /* max transmit frag size */
            buf.dec_ndr_short(); /* max receive frag size */
            buf.dec_ndr_long(); /* assoc. group */
            int n = buf.dec_ndr_short(); /* secondary addr len */
            buf.advance(n); /* secondary addr */
            buf.align(4);
            buf.dec_ndr_small(); /* num results */
            buf.align(4);
            this.result = buf.dec_ndr_short();
            buf.dec_ndr_short();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            file("build/secondary.txt").text == "secondary"
            file("build").listFiles().sort() as List == [file("build/output.txt"), file("build/secondary.txt")]
    
            when:
            cleanBuildDir()
            withBuildCache().run "customTask"
            then:
            skipped ":customTask"
            file("build/output.txt").text == "data"
            file("build/secondary.txt").text == "secondary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactoryTest.groovy

            def firstArgs = ["-m32"]
            def secondArgs = ["-m64"]
            when:
            def firstMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary).args(firstArgs) }
    
            then:
            interaction compilerShouldBeExecuted
    
            when:
            def secondMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(binary).args(secondArgs) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Float32Var(&o.SecondaryNodeEvictionRate, "secondary-node-eviction-rate", 0.01, "Number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy (see --unhealthy-zone-threshold for definition of healthy/unhealthy). Zone refers to entire cluster in non-multizone...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/completion.go

    	if opts == nil {
    		return CompletedOptions{completedOptions: &completedOptions{}}, nil
    	}
    
    	// process opts.ServiceClusterIPRange from list to Primary and Secondary
    	// we process secondary only if provided by user
    	apiServerServiceIP, primaryServiceIPRange, secondaryServiceIPRange, err := getServiceIPAndRanges(opts.ServiceClusterIPRanges)
    	if err != nil {
    		return CompletedOptions{}, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 26 19:50:38 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/controller/repair.go

    	primary := v1.IPv4Protocol
    	secondary := v1.IPv6Protocol
    	if netutils.IsIPv6(network.IP) {
    		primary = v1.IPv6Protocol
    	}
    
    	networkByFamily[primary] = network
    	allocatorByFamily[primary] = alloc
    	leaksByFamily[primary] = make(map[string]int)
    
    	if secondaryNetwork != nil && secondaryNetwork.IP != nil {
    		if primary == v1.IPv6Protocol {
    			secondary = v1.IPv4Protocol
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. cluster/addons/calico-policy-controller/ipamblock-crd.yaml

                    type: array
                  attributes:
                    items:
                      properties:
                        handle_id:
                          type: string
                        secondary:
                          additionalProperties:
                            type: string
                          type: object
                      type: object
                    type: array
                  cidr:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                        main {
                            sources {
                                test(CustomLanguageSourceSet)
                            }
                        }
                        secondary(CustomTestSuite) {
                            sources {
                                test(CustomLanguageSourceSet)
                            }
                        }
                        foo(CustomTestSuite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top