Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 297 for existed (0.16 sec)

  1. staging/src/k8s.io/api/policy/v1beta1/types_swagger_doc_generated.go

    get policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/policy/v1/generated.proto

      // but not yet healthy can be evicted only if the guarded application is not
      // disrupted (status.currentHealthy is at least equal to status.desiredHealthy).
      // Healthy pods will be subject to the PDB for eviction.
      //
      // AlwaysAllow policy means that all running pods (status.phase="Running"),
      // but not yet healthy are considered disrupted and can be evicted regardless
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/runtime/tracecpu.go

    func traceStopReadCPU() {
    	if traceEnabled() {
    		throw("traceStopReadCPU called with trace enabled")
    	}
    
    	// Once we close the profbuf, we'll be in one of two situations:
    	// - The logger goroutine has already exited because it observed
    	//   that the trace is disabled.
    	// - The logger goroutine is asleep.
    	//
    	// Wake the goroutine so it can observe that their the buffer is
    	// closed an exit.
    	trace.cpuLogWrite[0].Store(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/kotlinDsl/multiProjectBuild/tests/sanityCheck.sample.conf

    executable: gradle
    args: tasks
    # Do not fail for deprecation warnings: Project.getConvention emitted by the shadow plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 151 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/dependencyReportWithConflicts/build.gradle

                    ivyPattern projectDir.absolutePath + '/[module]-[revision]-ivy.xml'
                }
            }
        }
    }
    
    dependencies {
        // projectA-1.2 depends on projectB-1.5, which should be evicted by projectB-2.1.5
        evictedTransitive 'test:projectA:1.2'
        evictedTransitive 'test:projectB:2.1.5'
    
        // projectA-2.0 depends on projectB-2.1.5, which should evict projectB-1.5
        evictedDirect 'test:projectA:2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/lockosthread.go

    	C.threadExited = 0
    	go func() {
    		// This goroutine must be running on a new thread.
    		runtime.LockOSThread()
    		subThread = C.pthread_self()
    		// Register a pthread destructor so we can tell this
    		// thread has exited.
    		var key C.pthread_key_t
    		C.pthread_key_create(&key, (*[0]byte)(unsafe.Pointer(C.setExited)))
    		C.pthread_setspecific(key, unsafe.Pointer(new(int)))
    		ready <- true
    		// Exit with the thread locked.
    	}()
    	<-ready
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:21:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java

        /**
         * Gets the global settings file.
         *
         * @return The global settings file or {@code null} if none.
         */
        File getGlobalSettingsFile();
    
        /**
         * Sets the global settings file. A non-existent settings file is equivalent to empty settings. If both user
         * settings and global settings are given, the user settings take precedence.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientHelperSSLTest.groovy

            cleanup:
            Security.removeProvider(FakeKeyStore.Provider.name)
        }
    
        def "non-existent truststore file"() {
            given:
            keyStore = TestKeyStore.init(resources.dir)
            setupSystemProperties()
            System.properties["javax.net.ssl.trustStore"] = "will-not-exist"
    
            when:
            performAuthenticatedRequest(false)
    
            then:
            Exception exception = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 05:29:07 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/EvictingQueue.java

       * of the queue is evicted to make room.
       *
       * @return {@code true} always
       */
      @Override
      @CanIgnoreReturnValue
      public boolean offer(E e) {
        return add(e);
      }
    
      /**
       * Adds the given element to this queue. If the queue is currently full, the element at the head
       * of the queue is evicted to make room.
       *
       * @return {@code true} always
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/toolchain/exec.go

    		cmd.Stdin = os.Stdin
    		cmd.Stdout = os.Stdout
    		cmd.Stderr = os.Stderr
    		err := cmd.Run()
    		if err != nil {
    			if e, ok := err.(*exec.ExitError); ok && e.ProcessState != nil {
    				if e.ProcessState.Exited() {
    					os.Exit(e.ProcessState.ExitCode())
    				}
    				base.Fatalf("exec %s: %s", gotoolchain, e.ProcessState)
    			}
    			base.Fatalf("exec %s: %s", exe, err)
    		}
    		os.Exit(0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top