Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 114 for changedTo (0.14 sec)

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

    		configs = append(configs, settings.Configs...)
    	}
    
    	// Convert to menu entries.
    	result := make([]configMenuEntry, len(configs))
    	lastMatch := -1
    	for i, cfg := range configs {
    		dst, changed := cfg.config.makeURL(u)
    		if !changed {
    			lastMatch = i
    		}
    		// Use a relative URL to work in presence of stripping/redirects in webui.go.
    		rel := &url.URL{RawQuery: dst.RawQuery, ForceQuery: true}
    		result[i] = configMenuEntry{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            models.values().every { it.size() == 1 }
            models[":"][0].message == "fetch1 It works from project :"
    
            when:
            settingsFile << """
                println("configuring changed settings")
            """
    
            executer.withArguments(ENABLE_CLI)
            runBuildAction(new FetchParameterizedCustomModelForEachProject(["fetch1"]))
    
            then:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. pilot/pkg/xds/workload.go

    	// The rest of Istio xDS types would treat `req.Full && len(req.ConfigsUpdated) == 0` as a need to trigger a "full" push.
    	// This is only an escape hatch for a lack of complete mapping of "Input changed -> Output changed".
    	// WDS does not suffer this limitation, so we could almost safely ignore these.
    	// However, other code will merge "Partial push + Full push -> Full push", so skipping full pushes isn't viable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
         * being removed. Thus, all caches related to module structure, source code, and binaries should be invalidated.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/NotUsedByScanPlugin.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Documents that the type or method is not referenced by the build scan plugin,
     * and therefore can be changed or removed without breaking it.
     *
     * @since 5.1
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.METHOD, ElementType.TYPE})
    public @interface NotUsedByScanPlugin {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/os/path_windows.go

    		// every time fixLongPath is called with a relative path, so we use a cache.
    		// Note that getwdCache might be outdated if the working directory has been
    		// changed without using os.Chdir, i.e. using syscall.Chdir directly or cgo.
    		// This is fine, as the worst that can happen is that we fail to fix the path.
    		getwdCache.Lock()
    		if getwdCache.dir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller.go

    	defer func() {
    		// TODO can work queue metrics help here?
    
    		if !updatedEffectiveConfig {
    			// avoid leaking if we're not using the newly constructed transformers (due to an error or them not being changed)
    			closeTransformers()
    		}
    
    		if updatedEffectiveConfig && err == nil {
    			metrics.RecordEncryptionConfigAutomaticReloadSuccess(d.apiServerID)
    		}
    
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

            return onCreatedTimeStamp == modificationTracker.modificationCount
        }
    
        override fun getInvalidationReason(): String {
            if (onCreatedTimeStamp != modificationTracker.modificationCount) return "PSI has changed since creation"
            error("Getting invalidation reason for valid validity token")
        }
    
        override fun isAccessible(): Boolean {
            return true
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. internal/config/scanner/scanner.go

    	default:
    		return cfg, fmt.Errorf("unknown value: '%s'", idleSpeed)
    	}
    
    	// Stick to loading deprecated config/env if they are already set, and the Speed value
    	// has not been changed from its "default" value, if it has been changed honor new settings.
    	if kvs.GetWithDefault(Speed, DefaultKVS) == "default" {
    		if kvs.Get(Delay) != "" && kvs.Get(MaxWait) != "" {
    			if err = lookupDeprecatedScannerConfig(kvs, &cfg); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/runtime/cpuprof.go

    }
    
    var cpuprof cpuProfile
    
    // SetCPUProfileRate sets the CPU profiling rate to hz samples per second.
    // If hz <= 0, SetCPUProfileRate turns off profiling.
    // If the profiler is on, the rate cannot be changed without first turning it off.
    //
    // Most clients should use the [runtime/pprof] package or
    // the [testing] package's -test.cpuprofile flag instead of calling
    // SetCPUProfileRate directly.
    func SetCPUProfileRate(hz int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top