Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,164 for fetches (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		ui.PrintErr(fmt.Sprintf("Fetched %d base profiles out of %d", got, want))
    	}
    
    	return psrc, pbase, msrc, mbase, save, nil
    }
    
    // chunkedGrab fetches the profiles described in source and merges them into
    // a single profile. It fetches a chunk of profiles concurrently, with a maximum
    // chunk size to limit its memory usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/jwt/jwt.go

    )
    
    type JwksFetchMode int
    
    const (
    	// Istiod is used to indicate Istiod ALWAYS fetches the JWKs server
    	Istiod JwksFetchMode = iota
    
    	// Hybrid is used to indicate Envoy fetches the JWKs server when there is a cluster entry,
    	// otherwise fallback to Istiod
    	Hybrid
    
    	// Envoy is used to indicate Envoy ALWAYS fetches the JWKs server
    	Envoy
    )
    
    // String converts JwksFetchMode to readable string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 00:53:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

    import java.util.List;
    
    /**
     * Provides a {@link BuildAction} various ways to control a Gradle build and access information about the build.
     *
     * @since 1.8
     */
    public interface BuildController {
        /**
         * Fetches a snapshot of the model of the given type for the default project. The default project is generally the
         * project referenced when a {@link ProjectConnection} is created.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ParameterAwareBuildControllerAdapterTest.groovy

            controller.getModel(String)
    
            then:
            UnknownModelException e = thrown()
            e.message == /No model of type 'String' is available in this build./
            e.cause == failure
        }
    
        def "fetches model for target object without parameter"() {
            def model = new Object()
            def targetElement = new Object()
            def modelElement = Stub(Element)
            def modelView = Stub(GradleBuild)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go

    //go:build linux && (arm || arm64)
    
    package unix
    
    import "unsafe"
    
    // PtraceRegsArm is the registers used by arm binaries.
    type PtraceRegsArm struct {
    	Uregs [18]uint32
    }
    
    // PtraceGetRegsArm fetches the registers used by arm binaries.
    func PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    	Xss      int32
    }
    
    // PtraceGetRegs386 fetches the registers used by 386 binaries.
    func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. security/pkg/credentialfetcher/fetcher.go

    		if jwtPath == "" {
    			return nil, nil // no cred fetcher - using certificates only
    		}
    		return plugin.CreateTokenPlugin(jwtPath), nil
    	case security.Mock: // for test only
    		return plugin.CreateMockPlugin("test_token"), nil
    	default:
    		return nil, fmt.Errorf("invalid credential fetcher type %s", credtype)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 07 22:21:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

    import java.util.List;
    
    /**
     * Fetches models for given projects in an Isolated Project-compatible manner.
     * <p>
     * It should be used by tooling model builders when they need to aggregate models
     * from <b>multiple projects of the same build</b>.
     */
    @NonNullApi
    @ServiceScope(Scope.Build.class)
    public interface IntermediateToolingModelProvider {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/sync/example_test.go

    	for _, url := range urls {
    		// Increment the WaitGroup counter.
    		wg.Add(1)
    		// Launch a goroutine to fetch the URL.
    		go func(url string) {
    			// Decrement the counter when the goroutine completes.
    			defer wg.Done()
    			// Fetch the URL.
    			http.Get(url)
    		}(url)
    	}
    	// Wait for all HTTP fetches to complete.
    	wg.Wait()
    }
    
    func ExampleOnce() {
    	var once sync.Once
    	onceBody := func() {
    		fmt.Println("Only once")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 17:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/volume/plugins.go

    	}
    	if len(matchedPluginNames) > 1 {
    		return nil, fmt.Errorf("multiple volume plugins matched: %s", strings.Join(matchedPluginNames, ","))
    	}
    
    	return match, nil
    }
    
    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    func (pm *VolumePluginMgr) FindPluginByName(name string) (VolumePlugin, error) {
    	pm.mutex.RLock()
    	defer pm.mutex.RUnlock()
    
    	var match VolumePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top