Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 424 for loadOps (0.14 sec)

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

                        parameters.outputFile.set(outputFile)
                    }
    
                    // forces the service to be initialized immediately when configuration cache loads its cache
                    gradle.services.get(BuildEventListenerRegistryInternal).onOperationCompletion(outputProgress)
    
                    // forces the service to be initialized immediately
                    outputProgress.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. src/mime/type.go

    	// extensions maps from MIME type to list of lowercase file
    	// extensions: "image/jpeg" => [".jpg", ".jpeg"]
    	extensionsMu sync.Mutex // Guards stores (but not loads) on extensions.
    	extensions   sync.Map   // map[string][]string; slice values are append-only.
    )
    
    // setMimeTypes is used by initMime's non-test path, and by tests.
    func setMimeTypes(lowerExt, mixExt map[string]string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/runtime/iface.go

    	// Use atomic to ensure we see any previous writes done by the thread
    	// that updates the itabTable field (with atomic.Storep in itabAdd).
    	t := (*itabTableType)(atomic.Loadp(unsafe.Pointer(&itabTable)))
    	if m = t.find(inter, typ); m != nil {
    		goto finish
    	}
    
    	// Not found.  Grab the lock and try again.
    	lock(&itabLock)
    	if m = itabTable.find(inter, typ); m != nil {
    		unlock(&itabLock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Resources.java

       * {@linkplain Thread#getContextClassLoader() context class loader}. In simple environments, the
       * context class loader will find resources from the class path. In environments where different
       * threads can have different class loaders, for example app servers, the context class loader
       * will typically have been set to an appropriate loader for the current thread.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

        /**
         * Calculates the identity path for a project in this build.
         */
        Path calculateIdentityPathForProject(Path projectPath) throws IllegalStateException;
    
        /**
         * Loads the projects for this build so that {@link #getProjects()} can be used, if not already done.
         * This may include running the settings script for the build, or loading this information from cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaCompile.java

            }
            return spec;
        }
    
        /**
         * Returns the classpath to use to load the Zinc incremental compiler. This compiler in turn loads the Scala compiler.
         */
        @Classpath
        public FileCollection getZincClasspath() {
            return zincClasspath;
        }
    
        public void setZincClasspath(FileCollection zincClasspath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/loadstore_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests load/store ordering
    
    package main
    
    import "testing"
    
    // testLoadStoreOrder tests for reordering of stores/loads.
    func testLoadStoreOrder(t *testing.T) {
    	z := uint32(1000)
    	if testLoadStoreOrder_ssa(&z, 100) == 0 {
    		t.Errorf("testLoadStoreOrder failed")
    	}
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/envoy/clusters/clusters.go

    type EndpointCluster struct {
    	address            string
    	port               int
    	cluster            string
    	status             core.HealthStatus
    	failedOutlierCheck bool
    }
    
    // Prime loads the clusters output into the writer ready for printing
    func (c *ConfigWriter) Prime(b []byte) error {
    	cd := clusters.Wrapper{}
    	err := json.Unmarshal(b, &cd)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoader.java

    import org.gradle.tooling.internal.protocol.InternalStopWhenIdleConnection;
    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Loads the tooling API implementation of the Gradle version that will run the build (the "provider").
     * Adapts the rather clunky cross-version interface to the more readable interface of the TAPI client.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    	case ssa.OpPPC64LoweredRound32F, ssa.OpPPC64LoweredRound64F:
    		// input is already rounded
    
    	case ssa.OpLoadReg:
    		loadOp := loadByType(v.Type)
    		p := s.Prog(loadOp)
    		ssagen.AddrAuto(&p.From, v.Args[0])
    		p.To.Type = obj.TYPE_REG
    		p.To.Reg = v.Reg()
    
    	case ssa.OpStoreReg:
    		storeOp := storeByType(v.Type)
    		p := s.Prog(storeOp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top