Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 2,868 for revoked (0.15 sec)

  1. staging/src/k8s.io/api/core/v1/types_test.go

    		f := obj.Field(i)
    
    		protobufNum := strings.Split(f.Tag.Get("protobuf"), ",")[1]
    		if protobufNum == "15" {
    			t.Errorf("protobuf 15 in ServiceSpec is reserved for removed ipFamily field")
    		}
    		if protobufNum == "16" {
    			t.Errorf("protobuf 16 in ServiceSpec is reserved for removed topologyKeys field")
    		}
    	}
    }
    
    // TestEphemeralContainer ensures that the tags of Container and EphemeralContainerCommon are kept in sync.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 03:01:07 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_quantizable_spots_as_functions_xla.mlir

    // CHECK-NOT: _tfl_quant_trait = "fully_quantizable"
    
    // CHECK-LABEL: func private @composite_conv2d_with_bias_and_relu6_fn_1
    // CHECK: %[[CONV2D_0:.*]] = "tf.Conv2D"(%arg0, %arg1)
    // CHECK-SAME: data_format = "NHWC", dilations = [1, 1, 2, 1], explicit_paddings = [], padding = "SAME", strides = [1, 1, 2, 1]
    // Check that the `attr_map` attribute has been removed.
    // CHECK-NOT: attr_map
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

      - first.domain.example
      http:
      - headers:
          request:
            add:
              my-added-header: added-value
            remove:
            - my-removed-header
          response:
            add:
              my-added-resp-header: added-resp-value
            remove:
            - my-removed-header
        match:
        - headers:
            my-header:
              exact: some-value
          uri:
            prefix: /get
        name: default.http.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/http.yaml

          requestHeaderModifier:
            add:
            - name: my-added-header
              value: added-value
            remove: [my-removed-header]
        - type: ResponseHeaderModifier
          responseHeaderModifier:
            add:
            - name: my-added-resp-header
              value: added-resp-value
            remove: [my-removed-header]
        backendRefs:
        - name: httpbin
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. src/internal/runtime/exithook/hooks.go

    func Run(code int) {
    	for !locked.CompareAndSwap(0, 1) {
    		if Goid() == runGoid.Load() {
    			Throw("exit hook invoked exit")
    		}
    		Gosched()
    	}
    	defer locked.Store(0)
    	runGoid.Store(Goid())
    	defer runGoid.Store(0)
    
    	defer func() {
    		if e := recover(); e != nil {
    			Throw("exit hook invoked panic")
    		}
    	}()
    
    	for len(hooks) > 0 {
    		h := hooks[len(hooks)-1]
    		hooks = hooks[:len(hooks)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/shared/run.cmd

    if exist "%USERPROFILE%\mavenrc_post.bat" echo Warning: The mavenrc_post.bat script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.bat" call "%USERPROFILE%\mavenrc_post.bat"
    if exist "%USERPROFILE%\mavenrc_post.cmd" echo Warning: The mavenrc_post.cmd script is deprecated and will be removed in a future version. >&2
    if exist "%USERPROFILE%\mavenrc_post.cmd" call "%USERPROFILE%\mavenrc_post.cmd"
    :skipRcPost
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 05 22:52:54 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. pkg/util/slice/slice_test.go

    			modifier: nil,
    			want:     []string{"a", "ab", "cdef"},
    		},
    		{
    			testName: "All strings removed, result is nil",
    			input:    []string{"a"},
    			remove:   "a",
    			modifier: nil,
    			want:     nil,
    		},
    		{
    			testName: "No modifier func, one string removed",
    			input:    []string{"a", "ab", "cdef"},
    			remove:   "ab",
    			modifier: nil,
    			want:     []string{"a", "cdef"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 30 07:21:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginEndOfBuildListener.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Used to signal the end of build to the plugin.
     *
     * Uses a specific listener to guarantee being invoked after user buildFinished callbacks.
     * Expected to be invoked once for a build tree.
     *
     * Implemented by the Enterprise plugin.
     */
    public interface GradleEnterprisePluginEndOfBuildListener {
    
        interface BuildResult {
            @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. releasenotes/notes/manifest-base-cleanup.yaml

    area: installation
    releaseNotes:
      - |
        **Removed** obsolete manifests from the `base` Helm chart. See Upgrade Notes for more information.
    upgradeNotes:
      - title: "`base` Helm Chart removals"
        content: |
          A number of configurations previously present in the the `base` Helm chart were *copied* to the `istiod` chart in a previous releases.
    
          In this release, the duplicated configurations are fully removed from the `base` chart.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.28.md

    - Removed GA'ed feature gate `DelegateFSGroupToCSIDriver`. ([#117655](https://github.com/kubernetes/kubernetes/pull/117655), [@carlory](https://github.com/carlory))
    - Removed GA'ed feature gate `DevicePlugins`. ([#117656](https://github.com/kubernetes/kubernetes/pull/117656), [@carlory](https://github.com/carlory))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
Back to top