Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 365 for pStates (0.7 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

      // Type is the type of the condition.
      // Currently only Ready.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      optional string type = 1;
    
      // Status is the status of the condition.
      // Can be True, False, Unknown.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      optional string status = 2;
    
      // Last time we probed the condition.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/internal/chacha8rand/chacha8_amd64.s

    // ChaCha8 is ChaCha with 8 rounds.
    // See https://cr.yp.to/chacha/chacha-20080128.pdf.
    // See chacha8_generic.go for additional details.
    
    // ROL rotates the uint32s in register R left by N bits, using temporary T.
    #define ROL(N, R, T) \
    	MOVO R, T; PSLLL $(N), T; PSRLL $(32-(N)), R; PXOR T, R
    
    // ROL16 rotates the uint32s in register R left by 16, using temporary T if needed.
    #ifdef GOAMD64_v2
    #define ROL16(R, T) PSHUFB ·rol16<>(SB), R
    #else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/CompilationStateSerializer.java

            fileSerializer = new BaseSerializerFactory().getSerializerFor(File.class);
        }
    
        @Override
        public CompilationState read(Decoder decoder) throws Exception {
            // Deduplicates the include file states, as these are often shared between source files
            Map<Integer, IncludeFileEdge> ids = new HashMap<Integer, IncludeFileEdge>();
            int sourceFileCount = decoder.readSmallInt();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/google/cadvisor/third_party/containerd/NOTICE

    This product includes software developed at Docker, Inc. (https://www.docker.com).
    
    The following is courtesy of our legal counsel:
    
    
    Use and transfer of Docker may be subject to certain restrictions by the
    United States and other governments.
    It is your responsibility to ensure that your use and/or transfer does not
    violate applicable laws.
    
    For more information, please see https://www.bis.doc.gov
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 03 16:47:06 UTC 2022
    - 519 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    type PodStatus struct {
    	// Current condition of the pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
    	// +optional
    	Phase PodPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PodPhase"`
    	// Current service state of pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. docs/select/select.py

    r = s3.select_object_content(
        Bucket='mycsvbucket',
        Key='sampledata/TotalPopulation.csv.gz',
        ExpressionType='SQL',
        Expression="select * from s3object s where s.Location like '%United States%'",
        InputSerialization={
            'CSV': {
                "FileHeaderInfo": "USE",
            },
            'CompressionType': 'GZIP',
        },
        OutputSerialization={'CSV': {}},
    )
    
    for event in r['Payload']:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 18 00:11:39 UTC 2018
    - 1K bytes
    - Viewed (0)
  7. src/runtime/signal_linux_arm64.go

    func (c *sigctxt) sp() uint64  { return c.regs().sp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) pc() uint64 { return c.regs().pc }
    
    func (c *sigctxt) pstate() uint64 { return c.regs().pstate }
    func (c *sigctxt) fault() uintptr { return uintptr(c.regs().fault_address) }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info.si_code) }
    func (c *sigctxt) sigaddr() uint64 { return c.info.si_addr }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:48 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Mutate.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Denotes that the {@link RuleSource} method rule carrying this annotation mutates the rule subject.
     * <p>
     * Mutate rules execute after {@link Defaults} rules, but before {@link Finalize} rules.
     * The first parameter of the rule is the rule subject, which is mutable for the duration of the rule.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/graph_def.h

    #include <type_traits>
    
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/node_def.pb.h"
    
    namespace stablehlo::quantization {
    
    // Mutates all `NodeDef`s in `graph_def` by applying `func`. It modifies the
    // top-level `NodeDef`s as well as all `NodeDef`s in the function library.
    // `func` should accept a `NodeDef` reference.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 28 18:38:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-annotations-stress.test

    ProcStatus dt=67 p=1 pstatus=1
    GoStatus dt=4 g=1 m=1986492 gstatus=2
    ProcsChange dt=220 procs_value=8 stack=1
    STWBegin dt=127 kind_string=21 stack=2
    HeapGoal dt=3 heapgoal_value=4194304
    ProcStatus dt=2 p=0 pstatus=2
    ProcStatus dt=2 p=2 pstatus=2
    ProcStatus dt=1 p=3 pstatus=2
    ProcStatus dt=1 p=4 pstatus=2
    ProcStatus dt=1 p=5 pstatus=2
    ProcStatus dt=1 p=6 pstatus=2
    ProcStatus dt=1 p=7 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 38.3K bytes
    - Viewed (0)
Back to top