Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for _ignored (0.17 sec)

  1. pkg/proxy/ipvs/proxier_test.go

    			svc.Spec.Type = v1.ServiceTypeClusterIP
    			svc.Spec.ClusterIP = v1.ClusterIPNone
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "sip", "SCTP", 1235, 0, 0)
    		}),
    	)
    
    	// Headless service should be ignored
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    		t.Errorf("expected service map length 0, got %d", len(fp.svcPortMap))
    	}
    
    	if len(result.DeletedUDPClusterIPs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
            <field xdoc.separator="blank">
              <name>reports</name>
              <version>4.0.0</version>
              <description>
                @deprecated Now ignored by Maven.
              </description>
              <type>DOM</type>
            </field>
            <field>
              <name>reporting</name>
              <version>4.0.0+</version>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. src/reflect/value.go

    // then the case is ignored, and the field Send will also be ignored and may be either zero
    // or non-zero.
    //
    // If Dir is [SelectRecv], the case represents a receive operation.
    // Normally Chan's underlying value must be a channel and Send must be a zero Value.
    // If Chan is a zero Value, then the case is ignored, but Send must still be a zero Value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/net/http/server.go

    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    // The backwards-incompatible changes include:
    //   - Wildcards are just ordinary literal path segments in 1.21.
    //     For example, the pattern "/{x}" will match only that path in 1.21,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    //	keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    //	subjectAltName = email:******@****.***,DNS:test.example.com
    //	[ req_attributes ]
    //	challengePassword = ignored challenge
    //	unstructuredName  = ignored unstructured name
    var csrBase64Array = [...]string{
    	// Just [ v3_req ]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/webcomponents.min.js

    path";continue}"\\"==y&&c("\\ is an invalid code point."),l="file"==this._scheme?"file host":"authority ignore slashes";break;case"authority first slash":if("/"!=y){c("Expected '/', got: "+y),l="authority ignore slashes";continue}l="authority second slash";break;case"authority second slash":if(l="authority ignore slashes","/"!=y){c("Expected '/', got: "+y);continue}break;case"authority ignore slashes":if("/"!=y&&"\\"!=y){l="authority";continue}c("Expected authority, got: "+y);break;case"authorit...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    <pre>
    one, two, three = '一', '二', '三'
    </pre>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> provides a way to
    ignore right-hand side values in an assignment:
    </p>
    
    <pre>
    _ = x       // evaluate x but ignore it
    x, _ = f()  // evaluate f() but ignore second result value
    </pre>
    
    <p>
    The assignment proceeds in two phases.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.4.md

    * Try self-repair scheduler cache or panic ([#37379](https://github.com/kubernetes/kubernetes/pull/37379), [@wojtek-t](https://github.com/wojtek-t))
    * Ignore mirror pods with RestartPolicy == Never in restart tests ([#34462](https://github.com/kubernetes/kubernetes/pull/34462), [@yujuhong](https://github.com/yujuhong))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    			Requests: v1.ResourceList{
    				emptyResource: resourceQuantity2,
    			},
    		}}},
    	}
    	// pod requiring missingResource will pass PredicateAdmit.
    	//
    	// Extended resources missing in node status are ignored in PredicateAdmit.
    	// This is required to support extended resources that are not managed by
    	// device plugin, such as cluster-level resources.
    	missingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector_test.go

    					},
    				},
    				{
    					// Invalid GroupVersion, should be ignored
    					GroupVersion: "foo//whatever",
    					APIResources: []metav1.APIResource{
    						{Name: "bars", Namespaced: true, Kind: "Bar", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    					},
    				},
    				{
    					// Valid GroupVersion, missing required verbs, should be ignored
    					GroupVersion: "acme/v1",
    					APIResources: []metav1.APIResource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top