Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 233 for ONCE (0.06 sec)

  1. cni/pkg/nodeagent/informers_test.go

    		Spec: corev1.PodSpec{
    			NodeName: NodeName,
    		},
    		Status: corev1.PodStatus{
    			PodIP: "11.1.1.12",
    		},
    	}
    	ns := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{Name: "test"},
    		// TODO: once we if the add pod bug, re-enable this and remove the patch below
    		//		Labels: map[string]string{constants.DataplaneModeLabel: constants.DataplaneModeAmbient},
    
    	}
    
    	client := kube.NewFakeClient(ns, pod)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. docs/tr/docs/advanced/index.md

    !!! tip "İpucu"
        Sonraki bölümler **mutlaka "gelişmiş" olmak zorunda değildir**.
    
        Kullanım şeklinize bağlı olarak, çözümünüz bu bölümlerden birinde olabilir.
    
    ## Önce Öğreticiyi Okuyun
    
    [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} sayfasındaki bilgilerle **FastAPI**'nın çoğu özelliğini kullanabilirsiniz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. pkg/kubelet/container/helpers.go

    			name = fmt.Sprintf("%s-%s-%s:%d:%d", family, p.Protocol, p.HostIP, p.ContainerPort, p.HostPort)
    		}
    
    		// Protect against a port name being used more than once in a container.
    		if _, ok := names[name]; ok {
    			klog.InfoS("Port name conflicted, it is defined more than once", "portName", name)
    			continue
    		}
    		ports = append(ports, pm)
    		names[name] = struct{}{}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMap.java

         * Returns a newly-created immutable map, using the last value for any key that was added more
         * than once. The iteration order of the returned map is the order in which entries were
         * inserted into the builder, unless {@link #orderEntriesByValue} was called, in which case
         * entries are sorted by value. If a key was added more than once, it appears in iteration order
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    func timeoutWrapper(t *testing.T, mp MakePipe, f connTester) {
    	t.Helper()
    	c1, c2, stop, err := mp()
    	if err != nil {
    		t.Fatalf("unable to make pipe: %v", err)
    	}
    	var once sync.Once
    	defer once.Do(func() { stop() })
    	timer := time.AfterFunc(time.Minute, func() {
    		once.Do(func() {
    			t.Error("test timed out; terminating pipe")
    			stop()
    		})
    	})
    	defer timer.Stop()
    	f(t, c1, c2)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. internal/logger/target/kafka/kafka.go

    	// store to persist and replay the logs to the target
    	// to avoid missing events when the target is down.
    	store          store.Store[interface{}]
    	storeCtxCancel context.CancelFunc
    
    	initKafkaOnce      once.Init
    	initQueueStoreOnce once.Init
    
    	client   sarama.Client
    	producer sarama.SyncProducer
    	kconfig  Config
    	config   *sarama.Config
    }
    
    func (h *Target) validate() error {
    	if len(h.kconfig.Brokers) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

            /**
             * Due to KT-68386, the service registration is currently optional, with defaults for Standalone as it cannot register its own
             * permission options.
             *
             * TODO (KT-68386): Remove this once KT-68386 is fixed.
             */
            private val standaloneDefaults = object : KotlinAnalysisPermissionOptions {
                override val defaultIsAnalysisAllowedOnEdt: Boolean get() = true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheSkipCacheIntegrationTest.groovy

                }
                tasks.register("myTask", MyTask) {
                    // use an undeclared input so we can test --refresh-dependencies
                    // URL.text is not tracked for now; we'll have to change it once we start to track it
                    message.set(file("message").toPath().toUri().toURL().text)
                }
            """
            file("message") << "foo"
    
            when:
            configurationCacheRun "myTask"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

            extensions.findByType(type)?.let(configuration)
                ?: Factory {
                    // Find and configure convention
                    // Reflective look up to still support plugins that inlined this function once conventions will be removed
                    this::class.java.methods
                        .firstOrNull { it.name == "getConvention" }
                        ?.invoke(this)
                        ?.let { convention ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. staging/README.md

       list](https://groups.google.com/forum/#!forum/kubernetes-sig-architecture)
       and the mailing list of the SIG which would own the repo requesting approval
       for creating the staging repository.
    
    2. Once approval has been granted, create the new staging repository.
    
    3. Update
       [`import-restrictions.yaml`](/staging/publishing/import-restrictions.yaml)
       to add the list of other staging repos that this new repo can import.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top