Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 991 for oldR (0.12 sec)

  1. pkg/registry/admissionregistration/mutatingwebhookconfiguration/strategy.go

    	return validation.ValidateMutatingWebhookConfigurationUpdate(obj.(*admissionregistration.MutatingWebhookConfiguration), old.(*admissionregistration.MutatingWebhookConfiguration))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (mutatingWebhookConfigurationStrategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/controller/daemon/update.go

    			}
    		}
    		// Compare histories with ds to separate cur and old history
    		found := false
    		found, err = Match(ds, history)
    		if err != nil {
    			return nil, nil, err
    		}
    		if found {
    			currentHistories = append(currentHistories, history)
    		} else {
    			old = append(old, history)
    		}
    	}
    
    	currRevision := maxRevision(old) + 1
    	switch len(currentHistories) {
    	case 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy.go

    func (strategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    	return validation.ValidateCustomResourceDefinitionUpdate(ctx, obj.(*apiextensions.CustomResourceDefinition), old.(*apiextensions.CustomResourceDefinition))
    }
    
    // WarningsOnUpdate returns warnings for the given update.
    func (strategy) WarningsOnUpdate(ctx context.Context, obj, old runtime.Object) []string {
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCacheUnusedVersionCleanupIntegrationTest.groovy

            currentModulesDir = userHomeCacheDir.file(CacheLayout.MODULES.key).createDir()
            modulesGcFile.createFile()
        }
    
        def "cleans up all old unused versions of transforms-X when current modules requires cleanup"() {
            given:
            modulesGcFile.lastModified = daysAgo(2)
    
            when:
            succeeds("help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. docs/tr/docs/alternatives.md

    !!! check "**FastAPI**'a nasıl ilham oldu?"
        Harika bir performans'a sahip olmanın yollarını bulmalı.
    
        Hug ile birlikte (Hug zaten Falcon'a dayandığından) **FastAPI**'ın fonksiyonlarda `cevap` parametresi belirtmesinde ilham kaynağı oldu.
    
        FastAPI'da opsiyonel olmasına rağmen, daha çok header'lar, çerezler ve alternatif durum kodları belirlemede kullanılıyor.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  6. src/net/tcpconn_keepalive_conf_windows_test.go

    func maybeSkipKeepAliveTest(t *testing.T) {
    	// TODO(panjf2000): Unlike Unix-like OS's, old Windows (prior to Windows 10, version 1709)
    	// 	doesn't provide any ways to retrieve the current TCP keep-alive settings, therefore
    	// 	we're not able to run the test suite similar to Unix-like OS's on Windows.
    	//  Try to find another proper approach to test the keep-alive settings on old Windows.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 987 bytes
    - Viewed (0)
  7. src/internal/godebugs/godebugs_test.go

    		}
    		last = info.Name
    
    		if info.Package == "" {
    			t.Errorf("Name=%s missing Package", info.Name)
    		}
    		if info.Changed != 0 && info.Old == "" {
    			t.Errorf("Name=%s has Changed, missing Old", info.Name)
    		}
    		if info.Old != "" && info.Changed == 0 {
    			t.Errorf("Name=%s has Old, missing Changed", info.Name)
    		}
    		if !strings.Contains(doc, "`"+info.Name+"`") {
    			t.Errorf("Name=%s not documented in doc/godebug.md", info.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. pkg/kube/multicluster/component.go

    	comp := m.constructor(cluster)
    	old, f := m.clusters[cluster.ID]
    	m.mu.Lock()
    	m.clusters[cluster.ID] = comp
    	m.mu.Unlock()
    	// Close outside of the lock, in case its slow
    	if f {
    		old.Close()
    	}
    	return comp
    }
    
    func (m *Component[T]) clusterDeleted(cluster cluster.ID) {
    	m.mu.Lock()
    	defer m.mu.Unlock()
    	// If there is an old one, close it
    	if old, f := m.clusters[cluster]; f {
    		old.Close()
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 02:13:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/additional-responses.md

    ```Python
    old_dict = {
        "old key": "old value",
        "second old key": "second old value",
    }
    new_dict = {**old_dict, "new key": "new value"}
    ```
    
    Here, `new_dict` will contain all the key-value pairs from `old_dict` plus the new key-value pair:
    
    ```Python
    {
        "old key": "old value",
        "second old key": "second old value",
        "new key": "new value",
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/additional-responses.md

    ```Python
    old_dict = {
        "old key": "old value",
        "second old key": "second old value",
    }
    new_dict = {**old_dict, "new key": "new value"}
    ```
    
    Hier wird `new_dict` alle Schlüssel-Wert-Paare von `old_dict` plus das neue Schlüssel-Wert-Paar enthalten:
    
    ```Python
    {
        "old key": "old value",
        "second old key": "second old value",
        "new key": "new value",
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top