Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 443 for someInt (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskRequiredServices.java

            }
            registeredServices.add(service);
        }
    
        @Override
        public void acceptServiceReferences(List<? extends BuildServiceProvider<?, ?>> serviceReferences) {
            // someone already collected service references for us, just remember them
            consumedServices = serviceReferences;
        }
    
        @Override
        public boolean hasServiceReferences() {
            return consumedServices != null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/versions.go

    // import of "go/versions" even if they would not compile the file.
    // For example, during `go get -u ./...` (go.dev/issue/64490) we do not try to include
    // For this reason, this library just a clone of go/versions for the moment.
    
    // Lang returns the Go language version for version x.
    // If x is not a valid version, Lang returns the empty string.
    // For example:
    //
    //	Lang("go1.21rc2") = "go1.21"
    //	Lang("go1.21.2") = "go1.21"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/additional-status-codes.md

        Elle ne sera pas sérialisée avec un modèle.
    
        Assurez-vous qu'il contient les données souhaitées et que les valeurs soient dans un format JSON valides (si vous utilisez une `JSONResponse`).
    
    !!! note "Détails techniques"
        Vous pouvez également utiliser `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/traceregion.go

    		if r <= uintptr(len(block.data)) {
    			return (*notInHeap)(unsafe.Pointer(&block.data[r-n]))
    		}
    	}
    
    	// Try to install a new block.
    	lock(&a.lock)
    
    	// Check block again under the lock. Someone may
    	// have gotten here first.
    	block = (*traceRegionAllocBlock)(a.current.Load())
    	if block != nil {
    		r := block.off.Add(n)
    		if r <= uintptr(len(block.data)) {
    			unlock(&a.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/docker.md

    ## Imagens de contêiner
    
    Docker tem sido uma das principais ferramentas para criar e gerenciar **imagens de contêiner** e **contêineres**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  6. src/debug/pe/symbol.go

    //
    // The PE format allows for several possible aux symbol formats. For
    // more info see:
    //
    //	https://docs.microsoft.com/en-us/windows/win32/debug/pe-format#auxiliary-symbol-records
    //
    // At the moment this package only provides APIs for looking at
    // aux symbols of format 5 (associated with section definition symbols).
    func readCOFFSymbols(fh *FileHeader, r io.ReadSeeker) ([]COFFSymbol, error) {
    	if fh.PointerToSymbolTable == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// and until it is undesired and empty.
    	BeginConfigChange(QueuingConfig) (QueueSetCompleter, error)
    
    	// IsIdle returns a bool indicating whether the QueueSet was idle
    	// at the moment of the return.  Idle means the QueueSet has zero
    	// requests queued and zero executing.  This bit can change only
    	// (1) during a call to StartRequest and (2) during a call to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/net/dial_unix_test.go

    		if level == syscall.SOL_SOCKET && opt == syscall.SO_ERROR && err == nil && val == 0 {
    			t.Logf("canceling context")
    
    			// Cancel the context at just the moment which
    			// caused the race in issue 16523.
    			cancelCtx()
    
    			// And wait for the "interrupter" goroutine to
    			// cancel the dial by messing with its write
    			// timeout before returning.
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

    import java.io.File;
    
    /**
     * Generates an IDEA module file. If you want to fine tune the idea configuration
     * <p>
     * Please refer to interesting examples on idea configuration in {@link IdeaModule}.
     * <p>
     * At this moment nearly all configuration is done via {@link IdeaModule}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaModule extends XmlGeneratorTask<Module> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istioctl/kube.go

    	rootCmd.SetOut(&out)
    	rootCmd.SetErr(&err)
    	// istioctl will overwrite logs which we don't want.
    	// It happens to do this via PersistentPreRunE, which we can disable.
    	// We add an additional check in case someone refactors this away, to ensure we don't wipe out non-logging code.
    	if fmt.Sprintf("%p", rootCmd.PersistentPreRunE) != fmt.Sprintf("%p", cmd.ConfigureLogging) {
    		log.Fatalf("istioctl PersistentPreRunE is not configuring logging")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top