Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for mozbinding (0.22 sec)

  1. src/html/template/css.go

    	'/':  `\2f`,
    	':':  `\3a`,
    	';':  `\3b`,
    	'<':  `\3c`,
    	'>':  `\3e`,
    	'\\': `\\`,
    	'{':  `\7b`,
    	'}':  `\7d`,
    }
    
    var expressionBytes = []byte("expression")
    var mozBindingBytes = []byte("mozbinding")
    
    // cssValueFilter allows innocuous CSS values in the output including CSS
    // quantities (10px or 25%), ID or class literals (#foo, .bar), keyword values
    // (inherit, blue), and colors (#888).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultbinder/default_binder_test.go

    			defer cancel()
    
    			var gotBinding *v1.Binding
    			client := fake.NewSimpleClientset(testPod)
    			client.PrependReactor("create", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    				if action.GetSubresource() != "binding" {
    					return false, nil, nil
    				}
    				if tt.injectErr != nil {
    					return true, nil, tt.injectErr
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 02:17:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. maven-compat/src/main/resources/META-INF/maven/plugin.xml

              <type>org.apache.maven.project.MavenProject</type>
              <required>true</required>
              <editable>false</editable>
              <description>The current MavenProject instance, for building a new MojoBinding instance.</description>
            </parameter>
            <parameter>
              <name>session</name>
              <type>org.apache.maven.execution.MavenSession</type>
              <required>true</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    }
    
    func TestValidateUpdateVolumeBindingMode(t *testing.T) {
    	noBinding := makeClass(nil, nil)
    	immediateBinding1 := makeClass(&immediateMode1, nil)
    	immediateBinding2 := makeClass(&immediateMode2, nil)
    	waitBinding := makeClass(&waitingMode, nil)
    
    	cases := map[string]updateTest{
    		"old and new no mode": {
    			oldClass:      noBinding,
    			newClass:      noBinding,
    			shouldSucceed: true,
    		},
    		"old and new same mode ptr": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    				if action.GetSubresource() != "binding" {
    					return false, nil, nil
    				}
    				gotBinding = action.(clienttesting.CreateAction).GetObject().(*v1.Binding)
    				return true, gotBinding, item.injectBindError
    			})
    			registerPluginFuncs := append(item.registerPluginFuncs,
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
Back to top