Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 347 for exit_1 (0.22 sec)

  1. src/runtime/runtime2.go

    	// for Ms that have exited.
    	totalRuntimeLockWaitTime atomic.Int64
    }
    
    // Values for the flags field of a sigTabT.
    const (
    	_SigNotify   = 1 << iota // let signal.Notify have signal, even if from kernel
    	_SigKill                 // if signal.Notify doesn't take it, exit quietly
    	_SigThrow                // if signal.Notify doesn't take it, exit loudly
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

    bool IsControlFlowV1Op(Operation* op) {
      return mlir::isa<mlir::tf_executor::SwitchOp, mlir::tf_executor::MergeOp,
                       mlir::tf_executor::EnterOp, mlir::tf_executor::ExitOp,
                       mlir::tf_executor::NextIterationSinkOp,
                       mlir::tf_executor::NextIterationSourceOp>(op);
    }
    
    mlir::LogicalResult IsValidGraph(mlir::ModuleOp module) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. src/net/mockserver_test.go

    		f.Close()
    		cmdCh <- err
    	}()
    
    	return func(tb testing.TB) {
    		err := <-cmdCh
    		if err != nil {
    			tb.Errorf("process exited with error: %v", err)
    		}
    	}, nil
    }
    
    func init() {
    	if os.Getenv("GO_NET_TEST_TRANSFER") == "" {
    		return
    	}
    	defer os.Exit(0)
    
    	f := os.NewFile(uintptr(3), "splice-test-conn")
    	defer f.Close()
    
    	conn, err := FileConn(f)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/block.go

    	// TODO: predecessors is a pain to maintain. Can we somehow order phi
    	// arguments by block id and have this field computed explicitly when needed?
    	Preds []Edge
    
    	// A list of values that determine how the block is exited. The number
    	// and type of control values depends on the Kind of the block. For
    	// instance, a BlockIf has a single boolean control value and BlockExit
    	// has a single memory control value.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    //
    //	        . .        ^ pod worker loop exits syncPod, sees pod is terminating,
    //					 . .          invokes syncTerminatingPod
    //	        . .                               .
    //
    // ---|    |------------------|              .  = ShouldPodRuntimeBeRemoved() returns true (post-sync)
    //
    //	.                ^ syncTerminatingPod has exited successfully
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    			})
    		}
    	}
    
    	return volumeMounts
    }
    
    // getKubeletContainers lists containers managed by kubelet.
    // The boolean parameter specifies whether returns all containers including
    // those already exited and dead containers (used for garbage collection).
    func (m *kubeGenericRuntimeManager) getKubeletContainers(ctx context.Context, allContainers bool) ([]*runtimeapi.Container, error) {
    	filter := &runtimeapi.ContainerFilter{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

        new_types.back() = rewriter.getType<tf_executor::ControlType>();
    
        llvm::SmallVector<Value, 2> new_operands;
        FilterOutBlockArgControlDep(operands, new_operands);
    
        rewriter.replaceOpWithNewOp<tf_executor::ExitOp>(
            op, new_types, new_operands, op->getAttrs());
        return success();
      }
    };
    
    class ConvertLoopCondOp : public ConversionPattern {
     public:
      explicit ConvertLoopCondOp(MLIRContext *context)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      %axis_0 = arith.constant dense<0> : tensor<1xi32>
      %axis_1 = arith.constant dense<1> : tensor<1xi32>
      %axis_2 = arith.constant dense<2> : tensor<1xi32>
      %axis_3 = arith.constant dense<3> : tensor<1xi32>
      %0 = "tfl.reduce_any"(%arg_scalar, %axis_0) { keep_dims = false } : (tensor<i1>, tensor<1xi32>) -> tensor<i1>
      %1 = "tfl.reduce_any"(%arg_scalar, %axis_1) { keep_dims = true } : (tensor<i1>, tensor<1xi32>) -> tensor<i1>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    			// happens, just freeze this thread and let
    			// the process exit. See issue #18253.
    			lock(&deadlock)
    			lock(&deadlock)
    		}
    		print("runtime: failed to create new OS thread (have ", mcount(), " already; errno=", getlasterror(), ")\n")
    		throw("runtime.newosproc")
    	}
    
    	// Close thandle to avoid leaking the thread object if it exits.
    	stdcall1(_CloseHandle, thandle)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go

    	{13, "SIGPIPE", "broken pipe"},
    	{14, "SIGALRM", "alarm clock"},
    	{15, "SIGTERM", "terminated"},
    	{16, "SIGUSR1", "user defined signal 1"},
    	{17, "SIGUSR2", "user defined signal 2"},
    	{18, "SIGCHLD", "child exited"},
    	{19, "SIGPWR", "power failure"},
    	{20, "SIGWINCH", "window changed"},
    	{21, "SIGURG", "urgent I/O condition"},
    	{22, "SIGIO", "I/O possible"},
    	{23, "SIGSTOP", "stopped (signal)"},
    	{24, "SIGTSTP", "stopped"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top