Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 581 for conditional (0.22 sec)

  1. src/runtime/mbarrier.go

    //
    //
    //
    // Dealing with memory ordering:
    //
    // Both the Yuasa and Dijkstra barriers can be made conditional on the
    // color of the object containing the slot. We chose not to make these
    // conditional because the cost of ensuring that the object holding
    // the slot doesn't concurrently change color without the mutator
    // noticing seems prohibitive.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    // Usually, not all arguments are present.
    // For example, MOVL R1, R2 encodes using only As=MOVL, From=R1, To=R2.
    // The Scond field holds additional condition bits for systems (like arm)
    // that have generalized conditional execution.
    // (2) form is present for compatibility with older code,
    // to avoid too much changes in a single swing.
    // (1) scheme is enough to express any kind of operand combination.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. Makefile.core.mk

    RELEASE_LDFLAGS=''
    else
    RELEASE_LDFLAGS='-extldflags -static -s -w'
    endif
    
    # List of all binaries to build
    # We split the binaries into "agent" binaries and standard ones. This corresponds to build "agent".
    # This allows conditional compilation to avoid pulling in costly dependencies to the agent, such as XDS and k8s.
    AGENT_BINARIES:=./pilot/cmd/pilot-agent
    STANDARD_BINARIES:=./istioctl/cmd/istioctl \
      ./pilot/cmd/pilot-discovery \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    		//
    		// To prevent these issues, we need to either:
    		// 1. Apply backpressure directly to Envoy requests or Istiod pushes
    		// 2. Make part of the system unbounded
    		//
    		// (1) is challenging because we cannot do a conditional Recv (for Envoy requests), and changing
    		// the control plane requires substantial changes. Instead, we make the requests channel
    		// unbounded. This is the least likely to cause issues as the messages we store here are the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat.go

    func (out *Nat) ExpShortVarTime(x *Nat, e uint, m *Modulus) *Nat {
    	// For short exponents, precomputing a table and using a window like in Exp
    	// doesn't pay off. Instead, we do a simple conditional square-and-multiply
    	// chain, skipping the initial run of zeroes.
    	xR := NewNat().set(x).montgomeryRepresentation(m)
    	out.set(xR)
    	for i := bits.UintSize - bitLen(e) + 1; i < bits.UintSize; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    	off := *(*uint32)(unsafe.Pointer(p))
    	// Return off == ^uint32(0) ? 0 : f.datap.gofunc + uintptr(off), but without branches.
    	// The compiler calculates mask on most architectures using conditional assignment.
    	var mask uintptr
    	if off == ^uint32(0) {
    		mask = 1
    	}
    	mask--
    	raw := base + uintptr(off)
    	return unsafe.Pointer(raw & mask)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. common/config/.golangci.yml

          - name: atomic
          - name: call-to-gc
          - name: duplicated-imports
          - name: string-of-int
          - name: defer
            arguments:
              - - "call-chain"
          - name: unconditional-recursion
          - name: identical-branches
            # the following rules can be enabled in the future
            # - name: empty-lines
            # - name: confusing-results
            # - name: empty-block
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    // CertificateSigningRequestCondition describes a condition of a CertificateSigningRequest object
    type CertificateSigningRequestCondition struct {
    	// type of the condition. Known conditions are "Approved", "Denied", and "Failed".
    	//
    	// An "Approved" condition is added via the /approval subresource,
    	// indicating the request was approved and should be issued by the signer.
    	//
    	// A "Denied" condition is added via the /approval subresource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    type FlowSchemaStatus struct {
    	// `conditions` is a list of the current states of FlowSchema.
    	// +listType=map
    	// +listMapKey=type
    	// +patchMergeKey=type
    	// +patchStrategy=merge
    	// +optional
    	Conditions []FlowSchemaCondition `json:"conditions,omitempty" patchStrategy:"merge" patchMergeKey:"type" protobuf:"bytes,1,rep,name=conditions"`
    }
    
    // FlowSchemaCondition describes conditions for a FlowSchema.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/constants/constants.go

    	KubeletConfigurationFileName = "config.yaml"
    
    	// KubeletEnvFileName is a file "kubeadm init" writes at runtime. Using that interface, kubeadm can customize certain
    	// kubelet flags conditionally based on the environment at runtime. Also, parameters given to the configuration file
    	// might be passed through this file. "kubeadm init" writes one variable, with the name ${KubeletEnvFileVariableName}.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top