Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 151 for gStates (0.21 sec)

  1. src/internal/trace/event/event.go

    }
    
    // ArgTypes is a list of valid argument types for use in Args.
    //
    // See the documentation of Args for more details.
    var ArgTypes = [...]string{
    	"seq",     // sequence number
    	"pstatus", // P status
    	"gstatus", // G status
    	"g",       // trace.GoID
    	"m",       // trace.ThreadID
    	"p",       // trace.ProcID
    	"string",  // string ID
    	"stack",   // stack ID
    	"value",   // uint64
    	"task",    // trace.TaskID
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/export_utils.h

    // result of such an operation transformed by the
    // ExecutorToControlDialectConversion pass.
    //
    // TODO(b/145706023): When the ExecutorToControlDialectConversion pass runs
    // before the exporter, it mutates an mlir::TF::LegacyCallOp instruction to
    // an instruction with a different operation name. As such, this routine checks
    // both forms of a LegacyCall instruction. We only need to check for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/cache.go

    // new or newer than the global timestamp (set by UpdateTime()), while
    // individual entries may be slightly newer than the global timestamp. If a pod
    // has no states known by the runtime, Cache returns an empty PodStatus object
    // with ID populated.
    //
    // Cache provides two methods to retrieve the PodStatus: the non-blocking Get()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    # same possible root states, but in a different order from the eager case.)
    #
    # TODO(bcmills): if we retained the upgrades on w, x, and y (since they are
    # lexical prefixes for unresolved packages w, x, and y, respectively), then 'go
    # mod tidy -e' itself would become stable and no longer cycle through states.
    
    cp go.mod.orig go.mod
    go mod edit -go=1.17 go.mod
    cp go.mod go.mod.117
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_tensor.h

        CHECK(has_shaped_buffer());
        return *shaped_buffer_;
      }
      xla::ShapedBuffer& shaped_buffer() {
        CHECK(has_shaped_buffer());
        return *shaped_buffer_;
      }
      // Mutates the XlaTensor to set the ShapedBuffer.
      void set_shaped_buffer(xla::ScopedShapedBuffer shaped_buffer) {
        shaped_buffer_ = std::move(shaped_buffer);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/sigqueue.go

    // variable. It can be in three states:
    // * sigReceiving means that signal_recv is blocked on sig.Note and there are
    //   no new pending signals.
    // * sigSending means that sig.mask *may* contain new pending signals,
    //   signal_recv can't be blocked in this state.
    // * sigIdle means that there are no new pending signals and signal_recv is not
    //   blocked.
    //
    // Transitions between states are done atomically with CAS.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/latency_tracker.go

    //
    // If an API request involves N (N>=1) round trips to etcd, then we will sum
    // up the latenciy incurred in each roundtrip.
    
    // It uses the context associated with the request in flight, so there
    // are no states shared among the requests in flight, and so there is no
    // concurrency overhead.
    // If the goroutine executing the request handler makes concurrent calls
    // to the underlying storage layer, that is protected since the latency
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. pkg/features/kube_features_test.go

    	}
    	knownFeatures := knownFeatureGates.GetAll()
    
    	for registeredFeature := range registeredFeatures {
    		if _, ok := knownFeatures[registeredFeature]; !ok {
    			t.Errorf("The feature gate %q is not from known feature gates", registeredFeature)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/dtyp/SecurityDescriptor.java

        }
    
    
        /**
         * @return the type
         */
        public final int getType () {
            return this.type;
        }
    
    
        /**
         * @return the aces
         */
        public final ACE[] getAces () {
            return this.aces;
        }
    
    
        /**
         * @return the ownerGroupSid
         */
        public final SID getOwnerGroupSid () {
            return this.ownerGroupSid;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/linearized_read_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apiserver/pkg/apis/example"
    	"k8s.io/apiserver/pkg/storage"
    )
    
    func TestLinearizedReadRevisionInvariant(t *testing.T) {
    	// The etcd documentation [1] states that "linearized requests must go through the Raft consensus process."
    	// A full round of Raft consensus adds a new item to the Raft log, some of which is surfaced by etcd as a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:08:59 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top