Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 365 for pStates (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    Command line arguments and modes of execution (e.g. the Build Daemon) are two examples of other features.
    
    [[sec:states]]
    == Feature States
    
    Features can be in one of four states:
    
    1. <<#sec:internal,Internal>>
    2. <<#sec:incubating_state,Incubating>>
    3. <<#sec:public,Public>>
    4. <<#sec:deprecated,Deprecated>>
    
    [[sec:internal]]
    == 1. Internal
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/ReferenceEntry.java

    import com.google.common.cache.LocalCache.ValueReference;
    import javax.annotation.CheckForNull;
    
    /**
     * An entry in a reference map.
     *
     * <p>Entries in the map can be in the following states:
     *
     * <p>Valid:
     *
     * <ul>
     *   <li>Live: valid key/value are set
     *   <li>Loading: loading is pending
     * </ul>
     *
     * <p>Invalid:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/internal/zstd/block.go

    	}
    	panic("unreachable")
    }
    
    // execSeqs reads and executes the sequences. RFC 3.1.1.3.2.1.2.
    func (r *Reader) execSeqs(data block, off int, litbuf []byte, seqCount int) error {
    	// Set up the initial states for the sequence code readers.
    
    	rbr, err := r.makeReverseBitReader(data, len(data)-1, off)
    	if err != nil {
    		return err
    	}
    
    	literalState, err := rbr.val(r.seqTableBits[seqLiteral])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                        }
                    }
    
                    // If we have a result at this depth, don't bother building the next depth's states.
                    if (!results.isEmpty()) {
                        continue;
                    }
    
                    // Construct new states for processing at the next depth in case we can't find any solutions at this depth.
                    for (int i = 0; i < candidates.size(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. src/internal/trace/resources.go

    		Resource: ResourceID{Kind: ResourceProc, id: int64(id)},
    		oldState: uint8(from),
    		newState: uint8(to),
    	}
    }
    
    // Goroutine returns the state transition for a goroutine.
    //
    // Transitions to and from states that are Executing are special in that
    // they change the future execution context. In other words, future events
    // on the same thread will feature the same goroutine until it stops running.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/runtime/defs_linux_arm64.go

    	ss_flags  int32
    	pad_cgo_0 [4]byte
    	ss_size   uintptr
    }
    
    type sigcontext struct {
    	fault_address uint64
    	/* AArch64 registers */
    	regs       [31]uint64
    	sp         uint64
    	pc         uint64
    	pstate     uint64
    	_pad       [8]byte // __attribute__((__aligned__(16)))
    	__reserved [4096]byte
    }
    
    type sockaddr_un struct {
    	family uint16
    	path   [108]byte
    }
    
    type ucontext struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. pkg/kubeapiserver/default_storage_factory_builder.go

    	ResourceEncodingOverrides []schema.GroupVersionResource
    	EtcdServersOverrides      []string
    }
    
    // Complete completes the StorageFactoryConfig with provided etcdOptions returning completedStorageFactoryConfig.
    // This method mutates the receiver (StorageFactoryConfig).  It must never mutate the inputs.
    func (c *StorageFactoryConfig) Complete(etcdOptions *serveroptions.EtcdOptions) *completedStorageFactoryConfig {
    	c.StorageConfig = etcdOptions.StorageConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/surroundingobject.go

    		}
    		return obj, func(root map[string]interface{}) (interface{}, bool, error) {
    			return root, true, nil
    		}, nil
    	}
    }
    
    // WithTypeMeta returns a closure with the TypeMeta fields set if they are defined.
    // This mutates f(x).
    func (f SurroundingObjectFunc) WithTypeMeta(meta metav1.TypeMeta) SurroundingObjectFunc {
    	return func(x interface{}) (map[string]interface{}, AccessorFunc, error) {
    		obj, acc, err := f(x)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/metrics/metrics_test.go

    	// Check if getVolumeCount returns correct data
    	count := metricCollector.getVolumeCount()
    	if len(count) != 2 {
    		t.Errorf("getVolumeCount failed. Expected <2> states, got <%d>", len(count))
    	}
    
    	dswCount, ok := count["desired_state_of_world"]
    	if !ok {
    		t.Errorf("getVolumeCount failed. Expected <desired_state_of_world>, got nothing")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top