Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,255 for yearly (0.1 sec)

  1. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    	if i == -1 {
    		return errors.New("no CPU features found")
    	}
    	in = in[i+len(features):]
    	if i := strings.Index(in, "\n"); i != -1 {
    		in = in[:i]
    	}
    	m := map[string]*bool{}
    
    	initOptions() // need it early here; it's harmless to call twice
    	for _, o := range options {
    		m[o.Name] = o.Feature
    	}
    	// The EVTSTRM field has alias "evstrm" in Go, but Linux calls it "evtstrm".
    	m["evtstrm"] = &ARM64.HasEVTSTRM
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir.h

    // Simple wrapper to support tf.mlir.experimental.convert_graph_def.
    // Load a GraphDef (binary or textual proto format), convert to MLIR, and
    // (optionally) optimize the module before returning it as a string.
    // This is an early experimental API, ideally we should return a wrapper object
    // around a Python binding to the MLIR module.
    std::string ImportGraphDef(const std::string &proto,
                               const std::string &pass_pipeline,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingField.kt

    class C {
        <expr>val names: List<String>                            // clearly tells the type of the property upfront
            field: MutableList<String> = mutableListOf()</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 182 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/backingFieldDecl.kt

    class C {
        val names: List<String>                            // clearly tells the type of the property upfront
        <expr>field: MutableList<String> = mutableListOf()</expr>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 178 bytes
    - Viewed (0)
  5. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

    import org.apache.maven.api.annotations.Consumer;
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Component able to contribute to Maven session user properties. This SPI component is invoked
     * very early, while there is no session created yet.
     *
     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface PropertyContributor extends SpiService {
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/OverflowAvoidingLockSupport.java

      private OverflowAvoidingLockSupport() {}
    
      static void parkNanos(@CheckForNull Object blocker, long nanos) {
        // Even in the extremely unlikely event that a thread unblocks itself early after only 68 years,
        // this is indistinguishable from a spurious wakeup, which LockSupport allows.
        LockSupport.parkNanos(blocker, min(nanos, MAX_NANOSECONDS_THRESHOLD));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/OverflowAvoidingLockSupport.java

      private OverflowAvoidingLockSupport() {}
    
      static void parkNanos(@CheckForNull Object blocker, long nanos) {
        // Even in the extremely unlikely event that a thread unblocks itself early after only 68 years,
        // this is indistinguishable from a spurious wakeup, which LockSupport allows.
        LockSupport.parkNanos(blocker, min(nanos, MAX_NANOSECONDS_THRESHOLD));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. build-logic/uber-plugins/src/main/kotlin/gradlebuild.ci-lifecycle.gradle.kts

            group = ciGroup
            dependsOn("compileAllProduction")
        }
    
        register("sanityCheck") {
            description = "Run all basic checks (without tests) - to be run locally and on CI for early feedback"
            group = "verification"
            dependsOn("compileAll", "codeQuality", "projectHealth")
        }
    }
    
    fun TaskContainer.configureCIIntegrationTestDistributionLifecycleTasks() {
        named("quickTest") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 17:16:23 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaProject.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.io.File;
    
    /**
     * Generates an IDEA project file for root project *only*. If you want to fine tune the idea configuration <p> At this moment nearly all configuration is done via {@link IdeaProject}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaProject extends XmlGeneratorTask<Project> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseJdt.java

    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Generates the Eclipse JDT configuration file. If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseJdt}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseJdt extends PropertiesGeneratorTask<Jdt> {
    
        private EclipseJdt jdt;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top