Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 224 for Constraint (0.13 sec)

  1. src/crypto/ecdsa/ecdsa.go

    	return r, s, nil
    }
    
    type nistCurve[Point nistPoint[Point]] struct {
    	newPoint func() Point
    	curve    elliptic.Curve
    	N        *bigmod.Modulus
    	nMinus2  []byte
    }
    
    // nistPoint is a generic constraint for the nistec Point types.
    type nistPoint[T any] interface {
    	Bytes() []byte
    	BytesX() ([]byte, error)
    	SetBytes([]byte) (T, error)
    	Add(T, T) T
    	ScalarMult(T, []byte) (T, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    There can be several approaches to achieve this, and I'll tell you more about specific strategies in the next chapters, for example when talking about Docker and containers.
    
    The main constraint to consider is that there has to be a **single** component handling the **port** in the **public IP**. And then it has to have a way to **transmit** the communication to the replicated **processes/workers**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            then:
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    constraint('org.gradle.test:lib:1.0', 'org.gradle.test:lib:1.0')
                    edge('org.gradle.test:lib', 'org.gradle.test:lib:1.0') {
                        byConstraint()
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	isEphemeral := pvcSource == nil && podVolume.VolumeSource.Ephemeral != nil
    	if isEphemeral {
    		// Generic ephemeral inline volumes are handled the
    		// same way as a PVC reference. The only additional
    		// constraint (checked below) is that the PVC must be
    		// owned by the pod.
    		pvcSource = &v1.PersistentVolumeClaimVolumeSource{
    			ClaimName: ephemeral.VolumeClaimName(pod, &podVolume),
    		}
    	}
    	if pvcSource != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  5. cmd/auth-handler.go

    		payload, err := io.ReadAll(io.LimitReader(r.Body, maxLocationConstraintSize))
    		if err != nil {
    			authZLogIf(ctx, err, logger.ErrorKind)
    			return ErrMalformedXML
    		}
    
    		// Populate payload to extract location constraint.
    		r.Body = io.NopCloser(bytes.NewReader(payload))
    		region, s3Err = parseLocationConstraint(r)
    		if s3Err != ErrNone {
    			return s3Err
    		}
    
    		// Populate payload again to handle it in HTTP handler.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/internal/abi/type.go

    // runtime, this means all malloc size classes larger than the cutoff must
    // be multiples of four words. On 32-bit systems that's 16 bytes, and
    // all size classes >= 16 bytes are 16-byte aligned, so no real constraint.
    // On 64-bit systems, that's 32 bytes, and 32-byte alignment is guaranteed
    // for size classes >= 256 bytes. On a 64-bit system, 256 bytes allocated
    // is 32 pointers, the bits for which fit in 4 bytes. So MaxPtrmaskBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. CHANGELOG.md

     *  Fix: Don't silently ignore calls to `EventSource.cancel()` made from
        `EventSourceListener.onOpen()`.
     *  Fix: Enforce the max intermediates constraint when using pinned certificates with Conscrypt.
        This impacts Conscrypt when the server's presented certificates form both a trusted-but-unpinned
        chain and an untrusted-but-pinned chain.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/go/types/issues_test.go

    		makeSig(NewTypeParam(P, NewInterfaceType(nil, []Type{u})))
    	}
    }
    
    func TestIssue51093(t *testing.T) {
    	// Each test stands for a conversion of the form P(val)
    	// where P is a type parameter with typ as constraint.
    	// The test ensures that P(val) has the correct type P
    	// and is not a constant.
    	var tests = []struct {
    		typ string
    		val string
    	}{
    		{"bool", "false"},
    		{"int", "-1"},
    		{"uint", "1.0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    			check.expr(nil, &x, e)
    			xlist[i] = &x
    		}
    	}
    	return
    }
    
    // genericExprList is like exprList but result operands may be uninstantiated or partially
    // instantiated generic functions (where constraint information is insufficient to infer
    // the missing type arguments) for Go 1.21 and later.
    // For each non-generic or uninstantiated generic operand, the corresponding targsList and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/issues_test.go

    		makeSig(NewTypeParam(P, NewInterfaceType(nil, []Type{u})))
    	}
    }
    
    func TestIssue51093(t *testing.T) {
    	// Each test stands for a conversion of the form P(val)
    	// where P is a type parameter with typ as constraint.
    	// The test ensures that P(val) has the correct type P
    	// and is not a constant.
    	var tests = []struct {
    		typ string
    		val string
    	}{
    		{"bool", "false"},
    		{"int", "-1"},
    		{"uint", "1.0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top