Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 4,434 for Allows (0.12 sec)

  1. guava-testlib/src/com/google/common/testing/SerializableTester.java

     * object is equal to the original.
     *
     * <p><b>GWT warning:</b> Under GWT, both methods simply returns their input, as proper GWT
     * serialization tests require more setup. This no-op behavior allows test authors to intersperse
     * {@code SerializableTester} calls with other, GWT-compatible tests.
     *
     * @author Mike Bostock
     * @since 10.0
     */
    @GwtCompatible // but no-op!
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. docs/bucket/retention/README.md

    # Object Lock and Immutablity Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    MinIO server allows WORM for specific objects or by configuring a bucket with default object lock configuration that applies default retention mode and retention duration to all objects. This makes objects in the bucket immutable i.e. delete of the version are not allowed until an expiry specified in the bucket's object lock configuration or object retention.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/types.go

    // +protobuf=false
    type TableColumnDefinition = v1.TableColumnDefinition
    
    // TableRow is an individual row in a table.
    // +protobuf=false
    type TableRow = v1.TableRow
    
    // TableRowCondition allows a row to be marked with additional information.
    // +protobuf=false
    type TableRowCondition = v1.TableRowCondition
    
    type RowConditionType = v1.RowConditionType
    
    type ConditionStatus = v1.ConditionStatus
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 29 00:35:16 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         * <p>
         * Gradle intentionally does not offer a global system/gradle property that allows a universal disable of this check.
         * <p>
         * <b>Allowing communication over insecure protocols allows for a man-in-the-middle to impersonate the intended server,
         * and gives an attacker the ability to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/NOTES.txt

    Changes:
    - separate namespace allows:
    -- easier reconfig of just the gateway
    -- TLS secrets and domain name management is isolated, for better security
    -- simplified configuration
    -- multiple versions of the ingress can be used, to minimize upgrade risks
    
    - the new chart uses the default namespace service account, and doesn't require
    additional RBAC permissions.
    
    - simplified label and chart structure.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  6. pilot/test/xdstest/grpc.go

    	if w.send > 0 {
    		sleep.UntilContext(w.Context(), w.send)
    		log.Infof("delayed send for %v", w.send)
    	}
    	return w.ClientStream.SendMsg(m)
    }
    
    // SlowClientInterceptor is an interceptor that allows injecting delays on Send and Recv
    func SlowClientInterceptor(recv, send time.Duration) grpc.StreamClientInterceptor {
    	return func(ctx context.Context, desc *grpc.StreamDesc, cc *grpc.ClientConn,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. releasenotes/notes/k8s-auth.yaml

      default, can be disabled by REQUIRE_3P_TOKEN environment variable in Istiod, which will require new tokens with audience. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 452 bytes
    - Viewed (0)
  8. releasenotes/notes/cni-uds-log.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 32437
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 15 00:21:45 UTC 2021
    - 264 bytes
    - Viewed (0)
  9. test/map.go

    		if m[pz] != "-0" {
    			panic(fmt.Sprintln("float32 map does not treat -0 and +0 as equal for write"))
    		}
    		if _, ok := m[nana]; ok {
    			panic(fmt.Sprintln("float32 map allows NaN lookup (a)"))
    		}
    		if _, ok := m[nanb]; ok {
    			panic(fmt.Sprintln("float32 map allows NaN lookup (b)"))
    		}
    		if len(m) != 3 {
    			panic(fmt.Sprintln("float32 map should have 3 entries:", m))
    		}
    		m[nana] = "NaN"
    		m[nanb] = "NaN"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/model.go

    		return false
    	}
    	from := Reference{Kind: gvk.KubernetesGateway, Namespace: k8s.Namespace(namespace)}
    	to := Reference{Kind: gvk.Secret, Namespace: k8s.Namespace(p.Namespace)}
    	allow := refs[from][to]
    	if allow == nil {
    		return false
    	}
    	return allow.AllowAll || allow.AllowedNames.Contains(p.Name)
    }
    
    func (refs AllowedReferences) BackendAllowed(
    	k config.GroupVersionKind,
    	backendName k8s.ObjectName,
    	backendNamespace k8s.Namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top