Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,868 for revoked (0.5 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/filterlatency/filterlatency_test.go

    	wrapped.ServeHTTP(w, testRequest)
    
    	if handlerCallCount != 1 {
    		t.Errorf("expected the given handler to be invoked once, but was actually invoked %d times", handlerCallCount)
    	}
    	if actionCallCount != 1 {
    		t.Errorf("expected the action callback to be invoked once, but was actually invoked %d times", actionCallCount)
    	}
    	if filterRecordGot == nil {
    		t.Fatal("expected a filter record in the request context, but got nil")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt

                                "member": "Method org.gradle.api.file.SourceDirectorySet.getOutputDir()",
                                "acceptation": "Deprecated method removed",
                                "changes": [
                                    "Method has been removed"
                                ]
                            },
    {
                                "type": "org.gradle.api.tasks.AbstractExecTask",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. test/nilptr5.go

    // license that can be found in the LICENSE file.
    
    // Test that nil checks are removed.
    // Optimization is enabled.
    
    package p
    
    func f5(p *float32, q *float64, r *float32, s *float64) float64 {
    	x := float64(*p) // ERROR "removed nil check"
    	y := *q          // ERROR "removed nil check"
    	*r = 7           // ERROR "removed nil check"
    	*s = 9           // ERROR "removed nil check"
    	return x + y
    }
    
    type T struct{ b [29]byte }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 844 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    			}
    			if vop.RemovedVersion != nil {
    				if versionTracking.removed != nil {
    					t.Errorf("Unexpected RemovedVersion of %v for library %s already removed at version %v", vop.RemovedVersion, name, versionTracking.removed)
    				}
    				versionTracking.added = nil
    				versionTracking.removed = vop.RemovedVersion
    			}
    		}
    	}
    	for name, lib := range tracked {
    		if lib.removed != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. docs/security/tls_configuration_history.md

     * TLS_RSA_WITH_AES_128_CBC_SHA[²][http2_naughty]
     * TLS_RSA_WITH_AES_256_CBC_SHA[²][http2_naughty]
     * TLS_RSA_WITH_3DES_EDE_CBC_SHA[²][http2_naughty]
     * **REMOVED:** ~~TLS_DHE_RSA_WITH_AES_128_CBC_SHA~~
     * **REMOVED:** ~~TLS_DHE_RSA_WITH_AES_128_GCM_SHA256~~
     * **REMOVED:** ~~TLS_DHE_RSA_WITH_AES_256_CBC_SHA~~
    
    [OkHttp 3.0][OkHttp30]
    ----------------------
    
    _2016-01-13_
    
    ##### MODERN_TLS / COMPATIBLE_TLS cipher suites
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            DefaultFileChange.added(singleEntry.key, "test", FileType.RegularFile, singleEntry.value)
        }
    
        def removed(String path) {
            removed((path): path)
        }
    
        def removed(Map<String, String> entry) {
            def singleEntry = Iterables.getOnlyElement(entry.entrySet())
            DefaultFileChange.removed(singleEntry.key, "test", FileType.RegularFile, singleEntry.value)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    	// pod log directories without corresponding pods should be removed.
    	files := []string{"123", "456", "789", "012", "name_namespace_321", "name_namespace_654"}
    	podLogsDirectory := "/var/log/pods"
    	removed := []string{
    		filepath.Join(podLogsDirectory, "789"),
    		filepath.Join(podLogsDirectory, "012"),
    		filepath.Join(podLogsDirectory, "name_namespace_654"),
    	}
    	podStateProvider.removed["012"] = struct{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesTest.groovy

                            "changes": ["Interface has been removed"],
                            "acceptation": "@Incubating interface has been removed"
                        },
                        {
                            "type": "other.Type",
                            "member": "Method other.Type.someMethod",
                            "changes": ["Method has been removed"],
                            "acceptation": "I really want to do this"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication.go

    // stores any such user found onto the provided context for the request. If authentication fails or returns an error
    // the failed handler is used. On success, "Authorization" header is removed from the request and handler
    // is invoked to serve the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    	if !shouldRecord {
    		return NoopRecorder{}, nil
    	}
    
    	return &ChangeCauseRecorder{
    		changeCause: f.changeCause,
    	}, nil
    }
    
    // Complete is called before the command is run, but after it is invoked to finish the state of the struct before use.
    func (f *RecordFlags) Complete(cmd *cobra.Command) error {
    	if f == nil {
    		return nil
    	}
    
    	f.changeCause = parseCommandArguments(cmd)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top