Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 107 for expectedly (0.74 sec)

  1. src/runtime/testdata/testprogcgo/sigfwd.go

    	fprintf(stderr, "ERROR: C SIGSEGV not thrown on caught?.\n");
    	exit(2);
    }
    
    static void segvhandler(int signum) {
    	if (signum == SIGSEGV) {
    		if (expectCSigsegv == 0) {
    			fprintf(stderr, "SIGSEGV caught in C unexpectedly\n");
    			exit(1);
    		}
    		fprintf(stdout, "OK\n");
    		exit(0);  // success
    	}
    }
    
    static void __attribute__ ((constructor)) sigsetup(void) {
    	if (getenv("GO_TEST_CGOSIGFWD") == NULL) {
    		return;
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 17:06:49 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
            }
            return result
        }
    
        private ExecOutput run() {
            assert projectDir != null
            def builder = new ProcessBuilder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonProcessFailureIntegrationTest.groovy

            proc.waitForFinish()
        }
    
        void outputContainsKilledWorkerWarning() {
            if (OperatingSystem.current().windows) {
                outputContains(" exited unexpectedly with exit code 1.")
            } else {
                outputContains(" exited unexpectedly after being killed with signal 9.  This is likely because an external process has killed the worker.")
            }
        }
    
        TestFile pidFile(String rootPath = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 18:43:14 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tests/integration/pilot/tunneling_test.go

    	for _, expectedSourceIP := range expectedSourceIPs {
    		expectedLog := fmt.Sprintf("remoteAddr=%s method=GET url=/%s", expectedSourceIP.IP, expectedPath)
    		if strings.Contains(logs.String(), expectedLog) {
    			expectedTunnelLogFound = true
    			break
    		}
    	}
    	if !expectedTunnelLogFound {
    		return fmt.Errorf("failed to find expected tunnel log in logs of %s", target.ServiceName())
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug_test.go

    }
    
    func (s *ioState) readExpecting(millis, interlineTimeout int, expectedRE string) tstring {
    	timeout := time.Millisecond * time.Duration(millis)
    	interline := time.Millisecond * time.Duration(interlineTimeout)
    	s.last = tstring{}
    	var re *regexp.Regexp
    	if expectedRE != "" {
    		re = regexp.MustCompile(expectedRE)
    	}
    loop:
    	for {
    		var timer <-chan time.Time
    		if timeout > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top