Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for statx (0.08 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    }
    func (s *state) constNil(t *types.Type) *ssa.Value { return s.f.ConstNil(t) }
    func (s *state) constEmptyString(t *types.Type) *ssa.Value {
    	return s.f.ConstEmptyString(t)
    }
    func (s *state) constBool(c bool) *ssa.Value {
    	return s.f.ConstBool(types.Types[types.TBOOL], c)
    }
    func (s *state) constInt8(t *types.Type, c int8) *ssa.Value {
    	return s.f.ConstInt8(t, c)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	}
    	return nil
    }
    
    // Controls telemetry v2 prometheus settings.
    type TelemetryV2PrometheusConfig struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// Controls whether stats envoyfilter would be enabled or not.
    	Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	}
    	return nil
    }
    
    func (sc *http2serverConn) closeStream(st *http2stream, err error) {
    	sc.serveG.check()
    	if st.state == http2stateIdle || st.state == http2stateClosed {
    		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
    	}
    	st.state = http2stateClosed
    	if st.readDeadline != nil {
    		st.readDeadline.Stop()
    	}
    	if st.writeDeadline != nil {
    		st.writeDeadline.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// State set when resize controller has finished resizing the volume but further resizing of volume
    	// is needed on the node.
    	PersistentVolumeClaimNodeResizePending ClaimResourceStatus = "NodeResizePending"
    	// State set when kubelet starts resizing the volume.
    	PersistentVolumeClaimNodeResizeInProgress ClaimResourceStatus = "NodeResizeInProgress"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.runtime.RawExtension"
                  }
                ],
                "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n   depending on context."
              },
              "type": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Cannot be updated.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// State holds details about the container's current condition.
    	// +optional
    	State ContainerState `json:"state,omitempty" protobuf:"bytes,2,opt,name=state"`
    	// LastTerminationState holds the last termination state of the container to
    	// help debug container crashes and restarts. This field is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. prow/config/calico.yaml

                              type: string
                            since:
                              description: Since the state or reason last changed.
                              type: string
                            state:
                              description: State is the BGP session state.
                              type: string
                            type:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // Cannot be updated.
      optional string name = 1;
    
      // State holds details about the container's current condition.
      // +optional
      optional ContainerState state = 2;
    
      // LastTerminationState holds the last termination state of the container to
      // help debug container crashes and restarts. This field is not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"state":              "State holds details about the container's current condition.",
    	"lastState":          "LastTerminationState holds the last termination state of the container to help debug container crashes and restarts. This field is not populated if the container is still running and RestartCount is 0.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		// Skip any container that is not terminated
    		if oldStatus.State.Terminated == nil {
    			continue
    		}
    		// Skip any container that failed but is allowed to restart
    		if oldStatus.State.Terminated.ExitCode != 0 && restartPolicy == core.RestartPolicyOnFailure {
    			continue
    		}
    		for _, newStatus := range newStatuses {
    			if oldStatus.Name == newStatus.Name && newStatus.State.Terminated == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top