Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for droplet (0.2 sec)

  1. pkg/util/iptables/testing/fake_test.go

    	if err == nil {
    		t.Errorf("did not get expected error deleting rule in non-existent chain")
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROPLET")
    	if err != nil {
    		t.Errorf("unexpected error deleting non-existent rule: %v", err)
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROP")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         * For example, to call the MIF doclet, use:
         * <p>
         *     -doclet com.sun.tools.doclets.mif.MIFDoclet
         * <p>
         * For full, working examples of running a particular doclet, see Running the MIF Doclet.
         */
        @Override
        public String getDoclet() {
            return doclet.getValue();
        }
    
        @Override
        public void setDoclet(String doclet) {
            this.doclet.setValue(doclet);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    				`spec.containers[0].env[1]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[2]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[3]: hides previous definition of "b", which may be dropped when using apply`,
    				`spec.containers[0].env[4]: hides previous definition of "b", which may be dropped when using apply`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repair_test.go

    			},
    		},
    		// outside CIDR, will be dropped
    		&corev1.Service{
    			ObjectMeta: metav1.ObjectMeta{Namespace: "x5", Name: "out-v4"},
    			Spec: corev1.ServiceSpec{
    				ClusterIP:  "192.168.0.1",
    				ClusterIPs: []string{"192.168.0.1"},
    				IPFamilies: []corev1.IPFamily{corev1.IPv4Protocol},
    			},
    		},
    		&corev1.Service{ // outside CIDR, will be dropped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            final String docletValue = "org.gradle.CustomDocletClass";
            assertEquals(options, options.doclet(docletValue));
            assertEquals(docletValue, options.getDoclet());
        }
    
        @Test
        public void testFluentDocletClasspath() {
            final File[] docletClasspathValue = new File[]{new File("doclet.jar"), new File("doclet-dep.jar")};
            assertEquals(options, options.docletpath(docletClasspathValue));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. pkg/proxy/metrics/metrics.go

    		},
    	)
    
    	// iptablesCTStateInvalidDroppedPacketsDescription describe the metrics for the number of packets dropped
    	// by iptables which were marked INVALID by conntrack.
    	iptablesCTStateInvalidDroppedPacketsDescription = metrics.NewDesc(
    		"kubeproxy_iptables_ct_state_invalid_dropped_packets_total",
    		"packets dropped by iptables to work around conntrack problems",
    		nil, nil, metrics.ALPHA, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      op.setBodyAttr(
          FlatSymbolRefAttr::get(op.getContext(), cloned_body.getName()));
    
      // Drop cond/body args and return value. WhileOp result will be dropped later
      // in EliminateUnusedResults. Traverse in reverse order so that indices to be
      // deleted stay unchanged.
      for (int idx = op.getNumResults() - 1; idx >= 0; --idx) {
        if (!can_eliminate.test(idx)) continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. src/os/exec.go

    	// as unavailable after Release or Wait to avoid extending this delay.
    	// This is achieved by setting either processStatus flag when the
    	// Process' persistent reference is dropped. The only difference in the
    	// flags is the reason the handle is unavailable, which affects the
    	// errors returned by concurrent calls.
    	state atomic.Uint64
    
    	// Used only in modePID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. docs/features/https.md

        .build();
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/controller/repair_test.go

    			ObjectMeta: metav1.ObjectMeta{Namespace: "two", Name: "two"},
    			Spec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{{NodePort: 122}, {NodePort: 133}},
    			},
    		},
    		&corev1.Service{ // outside range, will be dropped
    			ObjectMeta: metav1.ObjectMeta{Namespace: "three", Name: "three"},
    			Spec: corev1.ServiceSpec{
    				Ports: []corev1.ServicePort{{NodePort: 201}},
    			},
    		},
    		&corev1.Service{ // empty, ignored
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top