Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for need (0.05 sec)

  1. pilot/pkg/networking/core/cluster.go

    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    			// So deletedClusters.Difference(builtClusters) would give us the correct deleted inbound clusters.
    			deletedClusters.Insert(cluster)
    		} else {
    			if subset == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    type preScoreState struct {
    	tolerationsPreferNoSchedule []v1.Toleration
    }
    
    // Clone implements the mandatory Clone interface. We don't really copy the data since
    // there is no need for that.
    func (s *preScoreState) Clone() framework.StateData {
    	return s
    }
    
    // getAllTolerationEffectPreferNoSchedule gets the list of all Tolerations with Effect PreferNoSchedule or with no effect.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

            // fine if we fail here
            val innerCloseable = innerSupplier()
            val outerCloseable = try {
                // but if we fail here, we need to ensure we close
                // the inner closeable, or else it will leak
                unsafeWrapper(innerCloseable)
            } catch (e: Throwable) {
                try {
                    innerCloseable.close()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. .bazelrc

    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    build:windows --host_linkopt=/DEBUG
    build:windows --linkopt=/OPT:REF
    build:windows --host_linkopt=/OPT:REF
    build:windows --linkopt=/OPT:ICF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * Verifies that Gradle doesn't pollute the system class loader.
     *
     * This is important for plugins that need to use isolated class loaders to avoid conflicts.
     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/os/exec_plan9.go

    		pid:    waitmsg.Pid,
    		status: &waitmsg,
    	}
    	return ps, nil
    }
    
    func (p *Process) release() error {
    	p.Pid = -1
    
    	// Just mark the PID unusable.
    	p.pidDeactivate(statusReleased)
    
    	// no need for a finalizer anymore
    	runtime.SetFinalizer(p, nil)
    	return nil
    }
    
    func findProcess(pid int) (p *Process, err error) {
    	// NOOP for Plan 9.
    	return newPIDProcess(pid), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiExecution.groovy

            // If we are testing a non-current tooling API version, we will have loaded the class using its classloader and thus
            // GradleVersion.current() will report that version. In order to set up the testing infrastructure, we need to
            // know the version of Gradle being built
            def currentVersionOverride = System.getProperty("org.gradle.integtest.currentVersion")
            if (currentVersionOverride != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. cmd/handler-api.go

    	}
    	if err != nil {
    		return 0
    	}
    	limit, err = strconv.ParseUint(strings.TrimSpace(string(buf)), 10, 64)
    	if err != nil {
    		// The kernel can return valid but non integer values
    		// but still, no need to interpret more
    		return 0
    	}
    	if limit == cgroupMemNoLimit {
    		// No limit set, It's the highest positive signed 64-bit
    		// integer (2^63-1), rounded down to multiples of 4096 (2^12),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			c.ready.set(false)
    		}
    	}()
    
    	c.terminateAllWatchers()
    	// Note that since onReplace may be not called due to errors, we explicitly
    	// need to retry it on errors under lock.
    	// Also note that startCaching is called in a loop, so there's no need
    	// to have another loop here.
    	if err := c.reflector.ListAndWatch(stopChannel); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/build.gradle.kts

            into("org/gradle/internal/cc/impl/problems")
            exclude("META-INF/**")
        }
    }
    
    // The integration tests in this project do not need to run in 'config cache' mode.
    tasks.configCacheIntegTest {
        enabled = false
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":build-option"))
        api(projects.concurrent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top