Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 337 for creat (0.07 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    			assert.Nil(t, err, "Expected no error creating service")
    
    			logger, _ := ktesting.NewTestContext(t)
    			err = esController.syncService(logger, fmt.Sprintf("%s/%s", testcase.service.Namespace, testcase.service.Name))
    			assert.Nil(t, err)
    
    			// last action should be to create endpoint slice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    			}
    		}
    
    		// If Cluster policy is in use, create the chain and create rules jumping
    		// from clusterPolicyChain to the clusterEndpoints
    		if usesClusterPolicyChain {
    			proxier.writeServiceToEndpointRules(tx, svcPortNameString, svcInfo, clusterPolicyChain, clusterEndpoints)
    		}
    
    		// If Local policy is in use, create rules jumping from localPolicyChain
    		// to the localEndpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      public static <K, V> ImmutableSortedMap.Builder<K, V> builderWithExpectedSize(int expectedSize) {
        throw new UnsupportedOperationException();
      }
    
      /**
       * Not supported. <b>You are attempting to create a map that may contain a non-{@code Comparable}
       * key.</b> Proper calls will resolve to the version in {@code ImmutableSortedMap}, not this dummy
       * version.
       *
       * @throws UnsupportedOperationException always
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			handler = utilwarning.AddWarningsHandler(handler, warnings)
    			article := GetArticleForNoun(kind, " ")
    			doc := "create" + article + kind
    			if isSubresource {
    				doc = "create " + subresource + " of" + article + kind
    			}
    			route := ws.POST(action.Path).To(handler).
    				Doc(doc).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceregistry_test.go

    			Selector:  labels,
    			ClusterIP: "9.9.9.9",
    		},
    	})
    	// Create an expect endpoint
    	createEndpointSlice(t, s.KubeClient().Kube(), "slice1", "service", namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"1.2.3.4"})
    	expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"1.2.3.4:80"}, nil)
    
    	// create an FQDN endpoint that should be ignored
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *
     * OkHttp performs best when you create a single `OkHttpClient` instance and reuse it for all of
     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                        }
                    }
                }
    
                ${mavenCentralRepository()}
    
                configurations.api.defaultDependencies { deps ->
                    deps.add project.dependencies.create("org.test:default-dependency:1.1")
                }
    """
    
            when:
            succeeds "publish"
    
            then:
            outputDoesNotContain(IvyComponentParser.PUBLICATION_WARNING_FOOTER)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    // claims at the same time. The controller must recover from any conflicts
    // that may arise from these conditions.
    
    // Number of retries when we create a PV object for a provisioned volume.
    const createProvisionedPVRetryCount = 5
    
    // Interval between retries when we create a PV object for a provisioned volume.
    const createProvisionedPVInterval = 10 * time.Second
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. cmd/xl-storage.go

    	if err != nil {
    		return path, err
    	}
    
    	fi, err := Lstat(path)
    	if err != nil && !osIsNotExist(err) {
    		return path, err
    	}
    	if osIsNotExist(err) {
    		// Disk not found create it.
    		if err = mkdirAll(path, 0o777, ""); err != nil {
    			return path, err
    		}
    	}
    	if fi != nil && !fi.IsDir() {
    		return path, errDiskNotDir
    	}
    
    	return path, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    ====
    [.multi-language-sample]
    =====
    .build.gradle
    [source, groovy]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    tasks.create("foo") {
        tasks.create("bar")
    }
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top