Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,575 for Reused (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

            executer.withArguments(commandLineArgs)
            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
            outputContains("Calculating task graph as configuration cache cannot be reused due to ${commandLineArgs.first()}")
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "myTask"
    
            then:
            outputContains("bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                }
            }
    
            /*This is an internal option, it's used in com.sun.tools.javac.util.Names#createTable(Options options). The -XD backdoor switch is used to set it, as described in a comment
            in com.sun.tools.javac.main.RecognizedOptions#getAll(OptionHelper helper). This option was introduced in JDK 7 and controls if compiler's name tables should be reused.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/lockosthread.go

    	<-ready
    	for {
    		time.Sleep(1 * time.Millisecond)
    		// Check that this goroutine is running on a different thread.
    		self := C.pthread_self()
    		if C.pthread_equal(subThread, self) != 0 {
    			println("locked thread reused")
    			os.Exit(1)
    		}
    		if atomic.LoadUint32((*uint32)(&C.threadExited)) != 0 {
    			println("OK")
    			return
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:21:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    //
    // Specifically, it tests a scenerio wherein a C
    // thread is calling into Go, creating a goroutine in
    // a syscall (in the tracer's model). The system is free
    // to reuse thread IDs, so first a thread ID is used to
    // call into Go, and then is used for a Go-created thread.
    //
    // This is a regression test. The trace parser didn't correctly
    // model GoDestroySyscall as dropping its P (even if the runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305.go

    )
    
    const (
    	// KeySize is the size of the key used by this AEAD, in bytes.
    	KeySize = 32
    
    	// NonceSize is the size of the nonce used with the standard variant of this
    	// AEAD, in bytes.
    	//
    	// Note that this is too short to be safely generated at random if the same
    	// key is reused more than 2³² times.
    	NonceSize = 12
    
    	// NonceSizeX is the size of the nonce used with the XChaCha20-Poly1305
    	// variant of this AEAD, in bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/SmbNegotiationResponse.java

         * 
         * @return number of initial credits the server grants
         */
        int getInitialCredits ();
    
    
        /**
         * @param tc
         * @param forceSigning
         * @return whether a connection can be reused for this config
         */
        boolean canReuse ( CIFSContext tc, boolean forceSigning );
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/audit/types.go

    	// Errors might be logged by the sink itself. If an error should be fatal, leading to an internal
    	// error, ProcessEvents is supposed to panic. The event must not be mutated and is reused by the caller
    	// after the call returns, i.e. the sink has to make a deepcopy to keep a copy around if necessary.
    	// Returns true on success, may return false on error.
    	ProcessEvents(events ...*auditinternal.Event) bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 16 09:32:49 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyClassPathNotationConverterTest.groovy

            out.files as List == [shadedApiJar] + localGroovyFiles + installationBeaconFiles
        }
    
        def "reuses dependency instances"() {
            when:
            def out = parse(GRADLE_API)
    
            then:
            out instanceof DefaultFileCollectionDependency
    
            when: // same instance is reused
            def out2 = parse(GRADLE_API)
    
            then:
            out2.is out
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    		close(f.result)
    		f.stopped = true
    	}
    }
    
    func (f *FakeWatcher) IsStopped() bool {
    	f.Lock()
    	defer f.Unlock()
    	return f.stopped
    }
    
    // Reset prepares the watcher to be reused.
    func (f *FakeWatcher) Reset() {
    	f.Lock()
    	defer f.Unlock()
    	f.stopped = false
    	f.result = make(chan Event)
    }
    
    func (f *FakeWatcher) ResultChan() <-chan Event {
    	return f.result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

            and:
            configurationCacheRun 'ok'
    
            then:
            output.contains "Calculating task graph as configuration cache cannot be reused because remote script $scriptUrl has changed."
            configurationCache.assertStateStored()
        }
    
        def "reuse cache if remote script is up to date"() {
            when:
            configurationCacheRun 'ok'
    
            then:
            configurationCache.assertStateStored()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top