Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 370 for elided (0.1 sec)

  1. src/runtime/runtime-gdb_unix_test.go

    		filepath.Join(dir, coreFile),
    	}
    	cmd = testenv.Command(t, "gdb", args...)
    
    	got, err := cmd.CombinedOutput()
    	t.Logf("gdb output:\n%s", got)
    	if err != nil {
    		t.Fatalf("gdb exited with error: %v", err)
    	}
    
    	// We don't know which thread the fatal signal will land on, but we can still check for basics:
    	//
    	// 1. A frame in the signal handler: runtime.sigtramp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/arguments.go

    		key, val, err := parseArgument(arg)
    
    		// Ignore if the first argument doesn't satisfy the criteria, it's most often the binary name
    		// Warn in all other cases, but don't error out. This can happen only if the user has edited the argument list by hand, so they might know what they are doing
    		if err != nil {
    			if i != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 11:01:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. src/syscall/syscall_wasip1.go

    	case SIGUSR2:
    		return "user defined signal 2"
    	case SIGPIPE:
    		return "broken pipe"
    	case SIGALRM:
    		return "alarm clock"
    	case SIGTERM:
    		return "terminated"
    	case SIGCHLD:
    		return "child exited"
    	case SIGCONT:
    		return "continued"
    	case SIGSTOP:
    		return "stopped (signal)"
    	case SIGTSTP:
    		return "stopped"
    	case SIGTTIN:
    		return "stopped (tty input)"
    	case SIGTTOU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      virtual TestRole AssumeRole() = 0;
    
      // Waits for the death test to finish and returns its status.
      virtual int Wait() = 0;
    
      // Returns true if the death test passed; that is, the test process
      // exited during the test, its exit status matches a user-supplied
      // predicate, and its stderr output matches a user-supplied regular
      // expression.
      // The user-supplied predicate may be a macro expression rather
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JDWPUtil.groovy

                        // This is ok - we're just trying to make sure all resources are released and threads
                        // have been resumed - this implies the VM has exited already.
                    } else {
                        throw e
                    }
                }
            }
    
            FixedAvailablePortAllocator.instance.releasePort(port)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/mem.go

    // memory from Ready to Reserved, but this may not be true in the future
    // since on every platform the operation is much more general than that.
    // If a transition from Prepared is ever introduced, create a new function
    // that elides the Ready state accounting.
    func sysFault(v unsafe.Pointer, n uintptr) {
    	gcController.mappedReady.Add(-int64(n))
    	sysFaultOS(v, n)
    }
    
    // sysReserve transitions a memory region from None to Reserved. It reserves
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

                    boolean hasResult = receiver.awaitNextResult();
                    if (!hasResult) {
                        try {
                            // Reached the end of input, worker has crashed or exited
                            requestProtocol = null;
                            workerProcess.waitForStop();
                            // Worker didn't crash
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h

    ::stablehlo::quantization::Method GetQuantizationMethodOrDefault(
        absl::Nonnull<Operation*> op);
    
    // Creates a function to wrap the section between arguments and results.
    // The generated function call op type will be decided by the given call_op_type
    // argument. Currently, it supports TF::XlaCallModuleOp and
    // TF::PartitionedCallOp function call op generations.
    SmallVector<Value, 4> LiftAsFunctionCall(OpBuilder& builder, Location location,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    errorMessage.set("SetException call exited before future was complete.");
                  }
                }
              });
          executor.execute(
              new Runnable() {
                @Override
                public void run() {
                  future.cancel(true);
                  if (!future.isDone()) {
                    errorMessage.set("Cancel call exited before future was complete.");
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

            }
            return bash("ps -o pid,ppid,args -p ${pids.join(' -p ')}").split("\\n")
        }
    
        /**
         * Blocks until the process represented by {@link #pid} has exited.
         */
        void waitForFinish() {
            if (pid == null) {
                throw new RuntimeException("Unable to wait for process to finish because provided pid is null!")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top