Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for creators (0.31 sec)

  1. pkg/controller/daemon/daemon_controller.go

    				if err != nil {
    					if apierrors.HasStatusCause(err, v1.NamespaceTerminatingCause) {
    						// If the namespace is being torn down, we can safely ignore
    						// this error since all subsequent creations will fail.
    						return
    					}
    				}
    				if err != nil {
    					logger.V(2).Info("Failed creation, decrementing expectations for daemon set", "daemonset", klog.KObj(ds))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

              java.util.function.Supplier<M> multimapSupplier) {
        return CollectCollectors.<T, K, V, M>flatteningToMultimap(
            keyFunction, valueFunction, multimapSupplier);
      }
    
      /**
       * Creates a new {@code Multimap} backed by {@code map}, whose internal value collections are
       * generated by {@code factory}.
       *
       * <p><b>Warning: do not use</b> this method when the collections returned by {@code factory}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	return fakeContainers
    }
    
    // makeTestContainer creates a test api container.
    func makeTestContainer(name, image string) v1.Container {
    	return v1.Container{
    		Name:  name,
    		Image: image,
    	}
    }
    
    // makeTestPod creates a test api pod.
    func makeTestPod(podName, podNamespace, podUID string, containers []v1.Container) *v1.Pod {
    	return &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
      }
    
      /**
       * Returns a builder that creates immutable sorted maps whose keys are ordered by their natural
       * ordering. The sorted maps use {@link Ordering#natural()} as the comparator.
       */
      public static <K extends Comparable<?>, V> Builder<K, V> naturalOrder() {
        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    return null
                }
    
                if (resolveCalleeExpressionOfFunctionCall) {
                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  6. pkg/controller/job/job_controller.go

    							// If the namespace is being torn down, we can safely ignore
    							// this error since all subsequent creations will fail.
    							return
    						}
    					}
    					if err != nil {
    						defer utilruntime.HandleError(err)
    						// Decrement the expected number of creates because the informer won't observe this pod
    						logger.V(2).Info("Failed creation, decrementing expectations", "job", klog.KObj(job))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	verifyNewDetacherCallCount(t, false /* expectZeroNewDetacherCallCount */, fakePlugin)
    	waitForDetachCallCount(t, 0 /* expectedDetachCallCount */, fakePlugin)
    }
    
    // Creates a volume with accessMode ReadWriteMany
    // Populates desiredStateOfWorld cache with two node/volume/pod tuples pointing to the created volume
    // Calls Run()
    // Verifies there are two attach calls and no detach calls.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    val myOtherNewProperty by extra { "calculated initial value" }  // <2>
    
    val myProperty: String by extra  // <3>
    val myNullableProperty: String? by extra  // <4>
    ----
    <1> Creates a new extra property called `myNewProperty` in the current context (the project in this case) and initializes it with the value `"initial value"`, which also determines the property's _type_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    	isIPv6 := proxier.iptables.IsIPv6()
    	if !isIPv6 && proxier.localhostNodePorts {
    		// Kube-proxy's use of `route_localnet` to enable NodePorts on localhost
    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates.
    
    		// NOTE: kubelet creates an identical copy of this rule. If you want to
    		// change this rule in the future, you MUST do so in a way that will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    	l.SetSymPkg(dst, l.SymPkg(src))
    	// TODO: other attributes?
    }
    
    // CreateExtSym creates a new external symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateExtSym(name string, ver int) Sym {
    	return l.newExtSym(name, ver)
    }
    
    // CreateStaticSym creates a new static symbol with the specified name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top