Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,393 for ACCEPT (0.09 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            accept("[1.0,2.0[", "1.99")
    
            accept("]1.0,2.0]", "1.0.1")
            accept("]1.0,2.0]", "1.2.3")
            accept("]1.0,2.0]", "2.0")
    
            accept("]1.0,2.0[", "1.0.1")
            accept("]1.0,2.0[", "1.2.3")
            accept("]1.0,2.0[", "1.99")
    
            accept("[1.0,)", "1.0")
            accept("[1.0,)", "1.2.3")
            accept("[1.0,)", "2.3.4")
    
            accept("]1.0,)", "1.0.1")
            accept("]1.0,)", "1.2.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/ExactVersionSelectorTest.groovy

            expect:
            accept("", "")
            accept("1.0", "1.0")
            accept("2.0", "2.0")
            accept("!@#%", "!@#%")
            accept("hey joe", "hey joe")
            !accept("1.0", "1.1")
            !accept("2.0", "3.0")
            !accept("!@#%", "%#@!")
            !accept("hey joe", "hoe hey")
        }
    
        def "does not accept candidate version that differs in separator"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/SubVersionSelectorTest.groovy

            expect:
            accept("1+", "11")
            accept("1.+", "1.2")
            accept("1.2.3+", "1.2.3.11")
            !accept("1+", "2")
            !accept("1.+", "11")
            !accept("1.2.3+", "1.2")
        }
    
        def "'+' is a valid selector which accepts everything"() {
            expect:
            accept("+", "11")
            accept("+", "1.2")
            accept("+", "1.2.3.11")
            accept("+", "2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            @Override
            void onAccess(Object key, @Nullable Object value) {
                onAccess.accept(key, value)
            }
    
            @Override
            void onChange(Object key, @Nullable Object newValue) {
                onChange.accept(key, newValue)
            }
    
            @Override
            void onRemove(Object key) {
                onRemove.accept(key)
            }
    
            @Override
            void onClear() {
                onClear.run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/contracts/descriptorContractUtils.kt

            KaContractCallsInPlaceContractEffectDeclaration(callsEffect.variableReference.accept(), callsEffect.kind)
    
        override fun visitLogicalOr(logicalOr: LogicalOr, data: Unit): Any = KaContractBinaryLogicExpression(
            logicalOr.left.accept(),
            logicalOr.right.accept(),
            KaContractBinaryLogicExpression.KaLogicOperation.OR
        )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/wrapper_test.go

    	testCases := []struct {
    		accept   string
    		expected string
    	}{
    		{
    			// Misconstructed/incorrect accept headers should be passed to the unaggregated handler to return an error
    			accept:   "application/json;foo=bar",
    			expected: "unaggregated",
    		}, {
    			// Empty accept headers are valid and should be handled by the unaggregated handler
    			accept:   "",
    			expected: "unaggregated",
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

                    visitor.accept(TestFiles.fileCollectionFactory().fixed(new File("2").absoluteFile))
                }
            }
            def collection = new TestCollection() {
                @Override
                protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                    visitor.accept(child2)
                    visitor.accept(child3)
                }
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                callsEffect.valueParameterReference.accept(),
                callsEffect.kind
            )
    
        override fun visitLogicalBinaryOperationContractExpression(
            binaryLogicExpression: ConeBinaryLogicExpression,
            data: Unit
        ): KaContractBinaryLogicExpression = KaContractBinaryLogicExpression(
            binaryLogicExpression.left.accept(),
            binaryLogicExpression.right.accept(),
            when (binaryLogicExpression.kind) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/negotiation/negotiate_test.go

    			},
    		},
    		{
    			accept: "*/*",
    			ns:     &fakeNegotiater{},
    			errFn: func(err error) bool {
    				return err.Error() == "only the following media types are accepted: "
    			},
    		},
    	}
    
    	for i, test := range testCases {
    		req := test.req
    		if req == nil {
    			req = &http.Request{Header: http.Header{}}
    			req.Header.Set("Accept", test.accept)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 10:53:34 UTC 2019
    - 9K bytes
    - Viewed (0)
  10. cni/pkg/iptables/testdata/default_ipv6.golden

    iptables -t mangle -A ISTIO_PRERT -m mark --mark 0x539/0xfff -j CONNMARK --set-xmark 0x111/0xfff
    iptables -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp -j ACCEPT
    iptables -t nat -A ISTIO_OUTPUT -d 169.254.7.127 -p tcp -m tcp -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT ! -d 127.0.0.1/32 -p tcp -i lo -j ACCEPT
    iptables -t mangle -A ISTIO_PRERT -p tcp -m tcp --dport 15008 -m mark ! --mark 0x539/0xfff -j TPROXY --on-port 15008 --tproxy-mark 0x111/0xfff
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top