Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 299 for Terminate (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    	cnIsValidDomain := cn == "*" || len(validation.IsDNS1123Subdomain(strings.TrimPrefix(cn, "*."))) == 0
    	// don't use the CN if it is a valid IP because our IP serving detection may unexpectedly use it to terminate the connection.
    	if !cnIsIP && cnIsValidDomain {
    		names = append(names, cn)
    	}
    	names = append(names, cert.DNSNames...)
    	// intentionally all IPs in the cert are ignored as SNI forbids passing IPs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 21 07:29:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. cluster/gce/gci/health-monitor.sh

      echo "Usage: health-monitor.sh <container-runtime/kubelet>"
      exit 1
    fi
    
    KUBE_HOME="/home/kubernetes"
    KUBE_ENV="${KUBE_HOME}/kube-env"
    if [[ ! -e "${KUBE_ENV}" ]]; then
      echo "The ${KUBE_ENV} file does not exist!! Terminate health monitoring"
      exit 1
    fi
    
    SLEEP_SECONDS=10
    component=$1
    echo "Start kubernetes health monitoring for ${component}"
    source "${KUBE_ENV}"
    if [[ "${component}" == "container-runtime" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 20 09:19:08 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/syntax.go

    // process as much source as possible. In this case, the returned syntax tree
    // is only nil if no correct package clause was found.
    // If errh is nil, Parse will terminate immediately upon encountering the first
    // error, and the returned syntax tree is nil.
    //
    // If pragh != nil, it is called with each pragma encountered.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

                    }
                });
                if (newContent) {
                    overlappingPath = snapshot.getAbsolutePath();
                    return SnapshotVisitResult.TERMINATE;
                } else {
                    return SnapshotVisitResult.CONTINUE;
                }
            }
    
            private boolean hasNewContent(RelativePathSupplier relativePath, FileSystemLocationSnapshot snapshot) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. pkg/windows/service/service.go

    				// but need a dedicated notification mechanism.
    				graceful := server.RequestShutdown()
    
    				// Free up the control handler and let us terminate as gracefully as possible.
    				// If that takes too long, the service controller will kill the remaining threads.
    				// As per https://docs.microsoft.com/en-us/windows/desktop/services/service-control-handler-function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. src/runtime/semasleep_test.go

    				t.Error("Program failed to return on time and has to be killed, issue #27520 still exists")
    				// Send SIGQUIT to get a goroutine dump.
    				// Stop sending SIGIO so that the program can clean up and actually terminate.
    				cmd.Process.Signal(syscall.SIGQUIT)
    				return
    			}
    
    			// Send the pesky signal that toggles spinning
    			// indefinitely if #27520 is not fixed.
    			cmd.Process.Signal(syscall.SIGIO)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

            when:
            startBuild()
    
            then:
            busy()
    
            when:
            startBuild()
    
            then:
            busy 2
        }
    
        def "sending stop to idle daemons causes them to terminate immediately"() {
            when:
            startBuild()
    
            then:
            busy()
    
            when:
            completeBuild()
    
            then:
            idle()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. pkg/test/failer.go

    // errorWrapper is a Failer that can be used to just extract an `error`. This allows mixing
    // functions that take in a Failer and those that take an error.
    // The function must be called within a goroutine, or calls to Fatal will try to terminate the outer
    // test context, which will cause the test to panic. The Wrap function handles this automatically
    type errorWrapper struct {
    	mu      sync.RWMutex
    	failed  error
    	cleanup func()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

                        }
                        return FileVisitResult.CONTINUE
                    }
    
                    override fun visitFileFailed(file: Path?, exc: IOException?) =
                        FileVisitResult.TERMINATE
    
                    override fun postVisitDirectory(dir: Path?, exc: IOException?) =
                        FileVisitResult.CONTINUE
    
                    private
                    fun Path.isClassFilePath() =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Interners.java

            if (sneaky == null) {
              return sample;
            } else {
              /* Someone beat us to it! Trying again...
               *
               * Technically this loop not guaranteed to terminate, so theoretically (extremely
               * unlikely) this thread might starve, but even then, there is always going to be another
               * thread doing progress here.
               */
            }
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top