Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for gStates (0.61 sec)

  1. src/runtime/mem.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "unsafe"
    
    // OS memory management abstraction layer
    //
    // Regions of the address space managed by the runtime may be in one of four
    // states at any given time:
    // 1) None - Unreserved and unmapped, the default state of any region.
    // 2) Reserved - Owned by the runtime, but accessing it would cause a fault.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/syscall/netlink_linux.go

    // properly.
    func rtaAlignOf(attrlen int) int {
    	return (attrlen + RTA_ALIGNTO - 1) & ^(RTA_ALIGNTO - 1)
    }
    
    // NetlinkRouteRequest represents a request message to receive routing
    // and link states from the kernel.
    type NetlinkRouteRequest struct {
    	Header NlMsghdr
    	Data   RtGenmsg
    }
    
    func (rr *NetlinkRouteRequest) toWireFormat() []byte {
    	b := make([]byte, rr.Header.Len)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:01:34 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/trace/viewer.go

    			PC:   f.PC,
    			Fn:   f.Func,
    			File: f.File,
    			Line: int(f.Line),
    		})
    		return true
    	})
    	return frames
    }
    
    func viewerGState(state trace.GoState, inMarkAssist bool) traceviewer.GState {
    	switch state {
    	case trace.GoUndetermined:
    		return traceviewer.GDead
    	case trace.GoNotExist:
    		return traceviewer.GDead
    	case trace.GoRunnable:
    		return traceviewer.GRunnable
    	case trace.GoRunning:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/config/types.go

    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. pkg/ledger/ledger.go

    // limitations under the License.
    
    // Package ledger implements a modified map with three unique characteristics:
    // 1. every unique state of the map is given a unique hash
    // 2. prior states of the map are retained for a fixed period of time
    // 2. given a previous hash, we can retrieve a previous state from the map, if it is still retained.
    package ledger
    
    import (
    	"encoding/base64"
    	"time"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/conds.go

    // evaluated. Future calls reuse the same result.
    //
    // The eval function is not passed a *State because the condition is cached
    // across all execution states and must not vary by state.
    func OnceCondition(summary string, eval func() (bool, error)) Cond {
    	return &onceCond{eval: eval, usage: CondUsage{Summary: summary}}
    }
    
    type onceCond struct {
    	once  sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/features/features.go

    	EtcdLearnerMode = "EtcdLearnerMode"
    	// WaitForAllControlPlaneComponents is expected to be alpha in v1.30
    	WaitForAllControlPlaneComponents = "WaitForAllControlPlaneComponents"
    )
    
    // InitFeatureGates are the default feature gates for the init command
    var InitFeatureGates = FeatureList{
    	PublicKeysECDSA: {
    		FeatureSpec: featuregate.FeatureSpec{Default: false, PreRelease: featuregate.Deprecated},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/TokenLookup.java

    import org.gradle.language.nativeplatform.internal.Expression;
    
    import java.util.Collection;
    import java.util.Collections;
    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * Captures the intermediate states during the resolution of macro #include directives, to short-circuit work that has already been done.
     */
    class TokenLookup {
        private Set<Expression> broken;
        private Multimap<Expression, Expression> tokensFor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/pin-ops-with-side-effects.mlir

    
    // CHECK-LABEL: @resource_output_gets_control_node
    func.func @resource_output_gets_control_node() -> tensor<!tf_type.resource<tensor<1xf32>>> {
      %var = "tfl.var_handle"() {container = "", shared_name = "states"} : () -> tensor<!tf_type.resource<tensor<1xf32>>>
      func.return %var : tensor<!tf_type.resource<tensor<1xf32>>>
    }
    // CHECK-NEXT: %[[VAR:.*]], %[[CONTROL:.*]] = tfl.control_node controls "tfl.var_handle"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 17 10:45:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/controllermanager_test.go

    	if diff := cmp.Diff(controllersWithoutFeatureGates, controllersWithFeatureGates); diff != "" {
    		t.Errorf("unexpected controllers after enabling feature gates, NewControllerDescriptors should always return all controller descriptors. Controllers should define required feature gates in ControllerDescriptor.requiredFeatureGates. Diff of returned controllers:\n%s", diff)
    	}
    }
    
    func TestFeatureGatedControllersShouldNotDefineAliases(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top