Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 314 for Empties (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    			        # illumos code generation requires a --illumos switch
    			        echo "$mksyscall -illumos -tags illumos,$GOARCH syscall_illumos.go |gofmt > zsyscall_illumos_$GOARCH.go";
    			        # illumos implies solaris, so solaris code generation is also required
    				echo "$mksyscall -tags solaris,$GOARCH syscall_solaris.go syscall_solaris_$GOARCH.go |gofmt >zsyscall_solaris_$GOARCH.go";
    			else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. hack/golangci-strict.yaml

              
              # The following packages have been migrated to contextual logging.
              # Packages matched here do not have to be listed above because
              # "contextual" implies "structured".
              contextual k8s.io/api/.*
              contextual k8s.io/apimachinery/pkg/util/runtime/.*
              contextual k8s.io/client-go/metadata/.*
              contextual k8s.io/client-go/tools/events/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/syscall/exec_libc.go

    	// This is only meaningful if Setsid is true.
    	Setctty bool
    	Noctty  bool // Detach fd 0 from controlling terminal
    	Ctty    int  // Controlling TTY fd
    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    	// the descriptor of the controlling TTY.
    	// Unlike Setctty, in this case Ctty must be a descriptor
    	// number in the parent process.
    	Foreground bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      for (auto i = 0; i < n; ++i) {
        if (!while_op.getResult(i).use_empty() ||
            !cond.getArgument(i).use_empty()) {
          explicitly_consumed_ids.push_back(i);
        }
      }
      // Empty consumed_element_ids implies none of results is used.
      if (explicitly_consumed_ids.empty()) {
        while_op.erase();
        return true;
      }
      // If every element is consumed, one can't reduce any operand.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/runtime/mfinal.go

    			return true
    		}
    	}
    	return false
    }
    
    // blockUntilEmptyFinalizerQueue blocks until either the finalizer
    // queue is emptied (and the finalizers have executed) or the timeout
    // is reached. Returns true if the finalizer queue was emptied.
    // This is used by the runtime and sync tests.
    func blockUntilEmptyFinalizerQueue(timeout int64) bool {
    	start := nanotime()
    	for nanotime()-start < timeout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/types.go

    	// audiences of the token, and otherwise should reject the token. A
    	// token issued for multiple audiences may be used to authenticate
    	// against any of the audiences listed but implies a high degree of
    	// trust between the target audiences.
    	// +listType=atomic
    	Audiences []string `json:"audiences" protobuf:"bytes,1,rep,name=audiences"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eds.go

    	var edsUpdatedServices map[string]struct{}
    	// canSendPartialFullPushes determines if we can send a partial push (ie a subset of known CLAs).
    	// This is safe when only Services has changed, as this implies that only the CLAs for the
    	// associated Service changed. Note when a multi-network Service changes it triggers a push with
    	// ConfigsUpdated=ALL, so in this case we would not enable a partial push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/internal/poll/splice_linux.go

    	}
    	return written, true, nil
    }
    
    // spliceDrain moves data from a socket to a pipe.
    //
    // Invariant: when entering spliceDrain, the pipe is empty. It is either in its
    // initial state, or splicePump has emptied it previously.
    //
    // Given this, spliceDrain can reasonably assume that the pipe is ready for
    // writing, so if splice returns EAGAIN, it must be because the socket is not
    // ready for reading.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/runtime/cpuprof.go

    	// Simple cas-lock to coordinate with setcpuprofilerate.
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    	if prof.hz.Load() != 0 { // implies cpuprof.log != nil
    		if p.numExtra > 0 || p.lostExtra > 0 || p.lostAtomic > 0 {
    			p.addExtra()
    		}
    		hdr := [1]uint64{1}
    		// Note: write "knows" that the argument is &gp.labels,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. hack/golangci.yaml

              
              # The following packages have been migrated to contextual logging.
              # Packages matched here do not have to be listed above because
              # "contextual" implies "structured".
              contextual k8s.io/api/.*
              contextual k8s.io/apimachinery/pkg/util/runtime/.*
              contextual k8s.io/client-go/metadata/.*
              contextual k8s.io/client-go/tools/events/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top