Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for expectedly (0.45 sec)

  1. pkg/kubelet/oom/oom_watcher_linux.go

    					eventMsg = fmt.Sprintf("%s, victim process: %s, pid: %d", eventMsg, event.ProcessName, event.Pid)
    				}
    				ow.recorder.Eventf(ref, v1.EventTypeWarning, systemOOMEvent, eventMsg)
    			}
    		}
    		klog.ErrorS(nil, "Unexpectedly stopped receiving OOM notifications")
    	}()
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 23:17:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/types.go

    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    	// It communicates with the DRA resource plugin to prepare resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. cmd/kubemark/app/hollow_node_test.go

    				t.Logf("read %d, err=%v\n", len(data), err)
    				ctx := ktesting.Init(t)
    				errCh <- run(ctx, s)
    			}()
    
    			select {
    			case err := <-errCh:
    				t.Fatalf("Run finished unexpectedly with error: %v", err)
    			case <-time.After(3 * time.Second):
    				t.Logf("Morph %q hasn't crashed for 3s. Calling success.", morph)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/go/scriptcmds_test.go

    	return script.Command(*cmd.Usage(), func(state *script.State, s ...string) (script.WaitFunc, error) {
    		t, ok := tbFromContext(state.Context())
    		if !ok {
    			return nil, errors.New("script Context unexpectedly missing testing.TB key")
    		}
    		_, dup := scriptGoInvoked.LoadOrStore(t, true)
    		if !dup {
    			t.Cleanup(func() { scriptGoInvoked.Delete(t) })
    		}
    		return cmd.Run(state, s...)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 18:33:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/named_certificates.go

    	cnIsIP := netutils.ParseIPSloppy(cn) != nil
    	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)
  6. src/cmd/cgo/internal/testerrors/errors_test.go

    	if err == nil {
    		t.Errorf("expected cgo to fail but it succeeded")
    	}
    
    	lines := bytes.Split(out, []byte("\n"))
    	for _, re := range errors {
    		found := false
    		for _, line := range lines {
    			if re.Match(line) {
    				t.Logf("found match for %#q: %q", re, line)
    				found = true
    				break
    			}
    		}
    		if !found {
    			t.Errorf("expected error output to contain %#q", re)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

        }
    
        @Override
        public void endStream() {
            // This happens when the connection between the worker and the build daemon is closed for some reason,
            // possibly because the build daemon died unexpectedly.
            stop();
        }
    
        @Override
        public void runThenStop(Request request) {
            try {
                run(request);
            } finally {
                stop();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/conntrack.go

    	hashsize, err := readIntStringFile("/sys/module/nf_conntrack/parameters/hashsize")
    	if err != nil {
    		return err
    	}
    	if hashsize >= (max / 4) {
    		return nil
    	}
    
    	// sysfs is expected to be mounted as 'rw'. However, it may be
    	// unexpectedly mounted as 'ro' by docker because of a known docker
    	// issue (https://github.com/docker/docker/issues/24000). Setting
    	// conntrack will fail when sysfs is readonly. When that happens, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testerrors/badsym_test.go

    	// The build should fail, but we want it to fail because we
    	// detected the error, not because we passed a bad flag to the
    	// C linker.
    
    	if err == nil {
    		t.Errorf("go build succeeded unexpectedly")
    	}
    
    	t.Logf("%s", output)
    
    	for _, line := range bytes.Split(output, []byte("\n")) {
    		if bytes.Contains(line, []byte("dynamic symbol")) && bytes.Contains(line, []byte("contains unsupported character")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_minimize_interesting.txt

    ! exec ./fuzz.test$GOEXE -test.fuzzcachedir=$GOCACHE/fuzz -test.fuzz=FuzzMinimizerNonrecoverableCrashInMinimization -test.run=^$ -test.fuzztime=10000x -test.parallel=1
    ! stdout '^ok'
    stdout -count=1 'fuzzing process hung or terminated unexpectedly while minimizing'
    stdout -count=1 'EOF'
    stdout FAIL
    # Check that the input written to testdata will reproduce the error.
    go run check_testdata/check_testdata.go FuzzMinimizerNonrecoverableCrashInMinimization 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top