Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 232 for addOption (0.18 sec)

  1. src/encoding/asn1/marshal.go

    	}
    
    	t.tag = bytesEncoder(appendTagAndLength(t.scratch[:0], tagAndLength{class, tag, bodyLen, isCompound}))
    
    	return t, nil
    }
    
    // Marshal returns the ASN.1 encoding of val.
    //
    // In addition to the struct tags recognized by Unmarshal, the following can be
    // used:
    //
    //	ia5:         causes strings to be marshaled as ASN.1, IA5String values
    //	omitempty:   causes empty slices to be skipped
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

         this License.
    
    1.10. “Modifications”
    
         means any of the following:
    
         a. any file in Source Code Form that results from an addition to, deletion
            from, or modification of the contents of Covered Software; or
    
         b. any new file in Source Code Form that contains any Covered Software.
    
    1.11. “Patent Claims” of a Contributor
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    func (l *gcCPULimiterState) accumulate(mutatorTime, gcTime int64) {
    	headroom := l.bucket.capacity - l.bucket.fill
    	enabled := headroom == 0
    
    	// Let's be careful about three things here:
    	// 1. The addition and subtraction, for the invariants.
    	// 2. Overflow.
    	// 3. Excessive mutation of l.enabled, which is accessed
    	//    by all assists, potentially more than once.
    	change := gcTime - mutatorTime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. docs/sts/ldap.md

    removed from, and gain any privileges associated with a group they are added to.
    
    **Please note that when AD/LDAP is configured, MinIO will not support long term users defined internally.** Only AD/LDAP users (and the root user) are allowed. In addition to this, the server will not support operations on users or groups using `mc admin user` or `mc admin group` commands except `mc admin user info` and `mc admin group info` to list set policies for users and groups. This is because users and groups...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableRangeSet.java

        private final List<Range<C>> ranges;
    
        public Builder() {
          this.ranges = Lists.newArrayList();
        }
    
        // TODO(lowasser): consider adding union, in addition to add, that does allow overlap
    
        /**
         * Add the specified range to this builder. Adjacent ranges are permitted and will be merged,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/op.go

    	asm               obj.As
    	generic           bool      // this is a generic (arch-independent) opcode
    	rematerializeable bool      // this op is rematerializeable
    	commutative       bool      // this operation is commutative (e.g. addition)
    	resultInArg0      bool      // (first, if a tuple) output of v and v.Args[0] must be allocated to the same register
    	resultNotInArgs   bool      // outputs must not be allocated to the same registers as inputs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller.go

    	quotableGroupVersionResources, err := discovery.GroupVersionResources(quotableResources)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse resources: %v", err)
    	}
    	// return the original discovery error (if any) in addition to the list
    	return quotableGroupVersionResources, discoveryErr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

            // but we still didn't add the result to the queue. Doing it from resolve threads would result in non-reproducible graphs, where
            // edges could be added in different order. To avoid this, the addition of new edges is done serially.
            for (EdgeState dependency : dependencies) {
                if (dependencyFilter.isSatisfiedBy(dependency)) {
                    dependency.attachToTargetConfigurations();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    package main
    
    // Generic opcodes typically specify a width. The inputs and outputs
    // of that op are the given number of bits wide. There is no notion of
    // "sign", so Add32 can be used both for signed and unsigned 32-bit
    // addition.
    
    // Signed/unsigned is explicit with the extension ops
    // (SignExt*/ZeroExt*) and implicit as the arg to some opcodes
    // (e.g. the second argument to shifts is unsigned). If not mentioned,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/math/big/nat.go

    }
    
    // addAt implements z += x<<(_W*i); z must be long enough.
    // (we don't use nat.add because we need z to stay the same
    // slice, and we don't need to normalize z after each addition)
    func addAt(z, x nat, i int) {
    	if n := len(x); n > 0 {
    		if c := addVV(z[i:i+n], z[i:], x); c != 0 {
    			j := i + n
    			if j < len(z) {
    				addVW(z[j:], z[j:], c)
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top