Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,067 for determin (2.77 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/IvyResourcePatternTest.groovy

            "#?: %12"   | "projectA" | "1.2"   | 'http://server/repo/lookup/%23%3F:%20%2512-projectA/1.2/ivys/1.2/ivy.xml'
        }
    
        def "substitutes attributes into pattern to determine version list pattern"() {
            def pattern = new IvyResourcePattern("prefix/[organisation]-[module]/[revision]/[type]s/[revision]/[artifact].[ext]")
            def ivyName = new DefaultIvyArtifactName("ivy", "ivy", "xml")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Serialization.java

        int size = stream.readInt();
        populateMap(map, stream, size);
      }
    
      /**
       * Populates a map by reading an input stream, as part of deserialization. See {@link #writeMap}
       * for the data format. The size is determined by a prior call to {@link #readCount}.
       */
      static <K extends @Nullable Object, V extends @Nullable Object> void populateMap(
          Map<K, V> map, ObjectInputStream stream, int size)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. release/downloadIstioCtl.sh

    #
    # where ${BRANCH} is either your branch name (e.g. release-1.4) or master.
    #
    
    # Determines the operating system.
    OS="${TARGET_OS:-$(uname)}"
    if [ "${OS}" = "Darwin" ] ; then
      OSEXT="osx"
    else
      OSEXT="linux"
    fi
    
    # Determine the latest Istio version by version number ignoring alpha, beta, and rc versions.
    if [ "${ISTIO_VERSION}" = "" ] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/certs/certs.go

    			errs = append(errs, err)
    		}
    	}
    	if len(errs) != 0 {
    		return false, utilerrors.NewAggregate(errs)
    	}
    	return true, nil
    }
    
    // UsingExternalCA determines whether the user is relying on an external CA.  We currently implicitly determine this is the case
    // when the CA Cert is present but the CA Key is not.
    // This allows us to, e.g., skip generating certs or not start the csr signing controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_activity.proto

    }
    
    // Listeners listening for auto clustering events get messages of this type.
    //
    // Next ID: 4
    message XlaAutoClusteringActivity {
      // The value of GlobalJitLevel, as determined by `GetGlobalJitLevelForGraph`.
      // This determines if global auto-clustering is enabled.
      OptimizerOptions.GlobalJitLevel global_jit_level = 1;
    
      // Whether --tf_xla_cpu_global_jit is enabled in TF_XLA_FLAGS.
      bool cpu_global_jit_enabled = 2;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 15 03:11:33 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Serialization.java

        int size = stream.readInt();
        populateMap(map, stream, size);
      }
    
      /**
       * Populates a map by reading an input stream, as part of deserialization. See {@link #writeMap}
       * for the data format. The size is determined by a prior call to {@link #readCount}.
       */
      static <K extends @Nullable Object, V extends @Nullable Object> void populateMap(
          Map<K, V> map, ObjectInputStream stream, int size)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePatternTest.groovy

            "#?:%12"    | "projectA" | "1.2"   | 'http://server/lookup/%23%3F:%2512/projectA/1.2/ivys/1.2/ivy.xml'
        }
    
        def "substitutes attributes into pattern to determine version list pattern"() {
            def pattern = new M2ResourcePattern("prefix/[organisation]/[module]/[revision]/[type]s/[revision]/[artifact].[ext]")
            def ivyName = new DefaultIvyArtifactName("projectA", "pom", "pom")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/net/conf.go

    			return false
    		}
    	}
    
    	return c.netGo || r.preferGo()
    }
    
    // addrLookupOrder determines which strategy to use to resolve addresses.
    // The provided Resolver is optional. nil means to not consider its options.
    // It also returns dnsConfig when it was used to determine the lookup order.
    func (c *conf) addrLookupOrder(r *Resolver, addr string) (ret hostLookupOrder, dnsConf *dnsConfig) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier.go

    // given VerifiableQueryParam against the current server.
    //
    // Currently supported query params are: fieldValidation
    //
    // Support for each of these query params needs to be verified because
    // we determine whether or not to perform server-side or client-side
    // schema validation based on whether the fieldValidation query param is
    // supported or not.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 01:23:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. release/downloadIstioCandidate.sh

    # run curl -L https://istio.io/downloadIstio | ISTIO_VERSION=1.6.8 TARGET_ARCH=x86_64 TARGET_OS=Linux sh -.
    
    set -e
    
    # Determines the operating system.
    OS="${TARGET_OS:-$(uname)}"
    if [ "${OS}" = "Darwin" ] ; then
      OSEXT="osx"
    else
      OSEXT="linux"
    fi
    
    # Determine the latest Istio version by version number ignoring alpha, beta, and rc versions.
    if [ "${ISTIO_VERSION}" = "" ] ; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:46 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top