Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for mixer (0.05 sec)

  1. src/html/template/escape_test.go

    		},
    		{
    			"Special tags in <script> string literals (mixed case)",
    			`<script>var a = "<!-- <ScripT </ScripT"</script>`,
    			`<script>var a = "\x3C!-- \x3CScripT \x3C/ScripT"</script>`,
    		},
    		{
    			"Special tags in <script> regex literals (mixed case)",
    			`<script>var a = /<!-- <ScripT </ScripT/</script>`,
    			`<script>var a = /\x3C!-- \x3CScripT \x3C/ScripT/</script>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

            configuration.execute(getComponents());
        }
    
        /**
         * This is an implementation of the {@link groovy.lang.GroovyObject}'s corresponding method.
         * The interface itself is mixed-in at runtime, but we want to keep this implementation as it
         * properly handles the dynamicLookupRoutine.
         *
         * @see AsmBackedClassGenerator.ClassBuilderImpl#addDynamicMethods
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			wantStatus: framework.NewStatus(framework.Unschedulable, "preemption: 0/2 nodes are available: 2 Insufficient cpu."),
    		},
    		{
    			name: "no candidate nodes found with mixed reasons, no lower priority pod and no enough CPU resource",
    			pod:  st.MakePod().Name("p").UID("p").Namespace(v1.NamespaceDefault).Priority(highPriority).Req(largeRes).Obj(),
    			pods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/validation/validation_test.go

    			},
    		},
    		expectedErrors: field.ErrorList{
    			field.Invalid(field.NewPath("spec").Child("matchingPrecedence"), int32(1), "only the schema named 'exempt' may have matchingPrecedence 1")},
    	}, {
    		name: "flow-schema mixes * verbs/apiGroups/resources should fail",
    		flowSchema: &flowcontrol.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "system-foo",
    			},
    			Spec: flowcontrol.FlowSchemaSpec{
    				MatchingPrecedence: 50,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

     * <li>Coercion from string to enum property is mixed in.</li>
     * <li>{@link groovy.lang.GroovyObject} and {@link DynamicObjectAware} is mixed in to the class.</li>
     * <li>An {@link ExtensionAware} implementation is added, unless {@link NonExtensible} is attached to the class.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    		Value:     &PointerAnonFields{},
    		ExpectXML: `<PointerAnonFields></PointerAnonFields>`,
    	},
    
    	// Test that name casing matters
    	{
    		Value:     &NameCasing{Xy: "mixed", XY: "upper", XyA: "mixedA", XYA: "upperA"},
    		ExpectXML: `<casing Xy="mixedA" XY="upperA"><Xy>mixed</Xy><XY>upper</XY></casing>`,
    	},
    
    	// Test the order in which the XML element name is chosen
    	{
    		Value: &NamePrecedence{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    			name: "ipv6 only",
    			proxy: &model.Proxy{
    				IPAddresses: []string{"1111:2222::1", "::1", "2222:3333::1"},
    			},
    			expected: [2]string{WildcardIPv6Address, LocalhostIPv6Address},
    		},
    		{
    			name: "mixed ipv4 and ipv6",
    			proxy: &model.Proxy{
    				IPAddresses: []string{"1111:2222::1", "::1", "127.0.0.1", "2.2.2.2", "2222:3333::1"},
    			},
    			expected: [2]string{WildcardAddress, LocalhostAddress},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		expectedErr string
    	}{
    		{
    			name:        "config with kmsv2 and kmsv1, KMSv2=true, KMSv1=false, should fail when feature is disabled",
    			filePath:    "testdata/valid-configs/kms/multiple-providers-mixed.yaml",
    			expectedErr: "KMSv1 is deprecated and will only receive security updates going forward. Use KMSv2 instead",
    		},
    		{
    			name:        "config with kmsv2, KMSv2=true, KMSv1=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	Value: make(map[string][]string),
    	File:  make(map[string][]*multipart.FileHeader),
    }
    
    // MultipartReader returns a MIME multipart reader if this is a
    // multipart/form-data or a multipart/mixed POST request, else returns nil and an error.
    // Use this function instead of [Request.ParseMultipartForm] to
    // process the request body as a stream.
    func (r *Request) MultipartReader() (*multipart.Reader, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. internal/s3select/select_test.go

    		},
    		{
    			name:       "compare-mixed",
    			query:      `SELECT id from s3object s WHERE value = true`,
    			wantResult: `{"id":1}`,
    			withJSON: `{"id":0, "value": false}
    {"id":1, "value": true}
    {"id":2, "value": 42}
    {"id":3, "value": "true"}
    `,
    		},
    		{
    			name:       "compare-mixed-not",
    			query:      `SELECT COUNT(id) as n from s3object s WHERE value != true`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
Back to top