Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 2,387 for xoring (0.17 sec)

  1. android/guava/src/com/google/common/base/Strings.java

       */
      public static String nullToEmpty(@CheckForNull String string) {
        return Platform.nullToEmpty(string);
      }
    
      /**
       * Returns the given string if it is nonempty; {@code null} otherwise.
       *
       * @param string the string to test and possibly return
       * @return {@code string} itself if it is nonempty; {@code null} if it is empty or null
       */
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 09 00:49:18 UTC 2021
    - 12.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/DependencyGraphEdge.java

    import org.gradle.internal.component.model.DependencyMetadata;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@link ResolvedGraphDependency} that is used during the resolution of the dependency graph.
     * Additional fields in this interface are not required to reconstitute the serialized graph, but are using during construction of the graph.
     */
    public interface DependencyGraphEdge extends ResolvedGraphDependency {
        DependencyGraphNode getFrom();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/runtime/proc_runtime_test.go

    			enum := ord.start(uint32(co))
    			checked := make([]bool, procs)
    			for p := 0; p < procs; p++ {
    				x := enum.position()
    				if checked[x] {
    					println("procs:", procs, "inc:", enum.inc)
    					panic("duplicate during enumeration")
    				}
    				checked[x] = true
    				enum.next()
    			}
    			if !enum.done() {
    				panic("not done")
    			}
    		}
    	}
    	// Make sure that different arguments to ord.start don't generate the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 18:43:08 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link BuilderProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link SettingsBuilderException}.
         *
         * @return the problems that were encountered during the settings building, can be empty but never {@code null}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link BuilderProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link ToolchainsBuilderException}.
         *
         * @return the problems that were encountered during the settings building, can be empty but never {@code null}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingResult.java

        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
         * {@link SettingsProblem.Severity#WARNING} and below are reported here. Problems with a higher severity level cause
         * the settings builder to fail with a {@link SettingsBuildingException}.
         *
         * @return The problems that were encountered during the settings building, can be empty but never {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/testing/allocs.go

    // AllocsPerRun returns the average number of allocations during calls to f.
    // Although the return value has type float64, it will always be an integral value.
    //
    // To compute the number of allocations, the function will first be run once as
    // a warm-up. The average number of allocations over the specified number of
    // runs will then be measured and returned.
    //
    // AllocsPerRun sets GOMAXPROCS to 1 during its measurement and will restore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/inference/inference_passes.td

    include "mlir/Pass/PassBase.td"
    
    // Internal TF2XLA Bridge Passes used during interence only.
    def InferenceMetricsPass : Pass<"tf2xla-inference-metrics-pass", "ModuleOp"> {
      let summary = "A pass to go over a Module and collect various metrics";
      let description = [{
        Collects metrics about a Module during inference, such as which ops are used.
      }];
      let constructor = "internal::CreateInferenceMetricsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 05 21:24:51 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/net/http/requestwrite_test.go

    		"Transfer-Encoding: chunked\r\n\r\n" +
    		chunk("my body") +
    		chunk("")
    	if buf.String() != expected {
    		t.Errorf("write:\n got: %s\nwant: %s", buf.String(), expected)
    	}
    }
    
    func chunk(s string) string {
    	return fmt.Sprintf("%x\r\n%s\r\n", len(s), s)
    }
    
    func mustParseURL(s string) *url.URL {
    	u, err := url.Parse(s)
    	if err != nil {
    		panic(fmt.Sprintf("Error parsing URL %q: %v", s, err))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriberTest.groovy

                .attribute(ProjectInternal.STATUS_ATTRIBUTE, "release")
    
            then:
            describer.describeAttributeSet(attributes.asMap()) == "a library for use during compile-time, with a release status, compatible with Java 11, packaged as a jar"
        }
    
        def "describes a library with MAX_VALUE target JVM version"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 17:05:19 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top