Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,123 for Terminated (0.18 sec)

  1. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    		sendGarbageToCoordinator(f)
    		time.Sleep(3600 * time.Second) // pause until coordinator terminates the process
    	}
    	f.Fuzz(func(*testing.T, []byte) {})
    }
    
    func FuzzClosePipeAfter(f *testing.F) {
    	f.Fuzz(func(t *testing.T, _ []byte) {
    		if isWorker() {
    			sendGarbageToCoordinator(t)
    			time.Sleep(3600 * time.Second) // pause until coordinator terminates the process
    		}
    	})
    }
    -- io_error_windows_test.go --
    package io_error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. pkg/dns/client/proxy.go

    		return nil, err
    	}
    	return p, nil
    }
    
    func (p *dnsProxy) start() {
    	err := p.server.ActivateAndServe()
    	if err != nil {
    		log.Errorf("Local %s DNS server terminated: %v", p.protocol, err)
    	}
    }
    
    func (p *dnsProxy) close() {
    	if p.server != nil {
    		if err := p.server.Shutdown(); err != nil {
    			log.Errorf("error in shutting down %s dns downstreamUDPServer :%v", p.protocol, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:19 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. cni/pkg/monitoring/monitoring.go

    			log.Errorf("error running monitoring http server: %s", err)
    		}
    	}()
    	go func() {
    		<-stop
    		err := monitoringServer.Close()
    		log.Debugf("monitoring server terminated: %v", err)
    	}()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"uncountedTerminatedPods": "uncountedTerminatedPods holds the UIDs of Pods that have terminated but the job controller hasn't yet accounted for in the status counters.\n\nThe job controller creates pods with a finalizer. When a pod terminates (succeeded or failed), the controller does three steps to account for it in the job status:\n\n1. Add the pod UID to the arrays in this field. 2. Remove the pod finalizer....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java

            int start = dstIndex;
    
            writeInt2( informationLevel, dst, dstIndex );
            dstIndex += 2;
    
            /* windows98 has what appears to be another 4 0's followed by the share
             * name as a zero terminated ascii string "\TMP" + '\0'
             *
             * As is this works, but it deviates from the spec section 4.1.6.6 but
             * maybe I should put it in. Wonder what NT does?
             */
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/CharSource.java

     * \r} or {@code \r\n}, do not include the line separator in each line and do not consider there to
     * be an empty line at the end if the contents are terminated with a line separator.
     *
     * <p>Any {@link ByteSource} containing text encoded with a specific {@linkplain Charset character
     * encoding} may be viewed as a {@code CharSource} using {@link ByteSource#asCharSource(Charset)}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  7. pkg/kubelet/stats/cri_stats_provider_test.go

    		containerLogStats8 = makeFakeLogStats(6000)
    
    		// Terminated pod sandbox
    		sandbox4        = makeFakePodSandbox("sandbox1-name", "sandbox1-uid", "sandbox1-ns", true)
    		container6      = makeFakeContainer(sandbox4, cName6, 0, true)
    		containerStats6 = makeFakeContainerStats(container6, imageFsMountpoint)
    
    		// Terminated pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1/types.go

    	// Failed means to wait until a previously created Pod is fully terminated (has phase
    	// Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. pkg/controller/job/metrics/metrics.go

    	// terminated pods that have the finalizer batch.kubernetes.io/job-tracking,
    	// regardless of whether they are owned by a Job.
    	TerminatedPodsTrackingFinalizerTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem: JobControllerSubsystem,
    			Name:      "terminated_pods_tracking_finalizer_total",
    			Help: `The number of terminated pods (phase=Failed|Succeeded)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/apis/batch/types.go

    	//Failed means to wait until a previously created Pod is fully terminated (has phase
    	//Failed or Succeeded) before creating a replacement Pod.
    	Failed PodReplacementPolicy = "Failed"
    )
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top