Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 170 for none_of (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/FeaturePreviews.java

            }
    
            /**
             * Returns the set of active {@linkplain Feature features}.
             */
            private static EnumSet<Feature> activeFeatures() {
                EnumSet<Feature> activeFeatures = EnumSet.noneOf(Feature.class);
                for (Feature feature : Feature.values()) {
                    if (feature.isActive()) {
                        activeFeatures.add(feature);
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 14 08:15:13 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                            oneOf:
                              stringMatch:
                                exact: iss
                    - metadata:
                        filter: istio_authn
                        path:
                        - key: request.auth.claims
                        - key: iss
                        value:
                          listMatch:
                            oneOf:
                              stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/visitor.go

    		}
    		for i := range s.ValueValidation.AnyOf {
    			m.visitNestedValueValidation(&s.ValueValidation.AnyOf[i])
    		}
    		for i := range s.ValueValidation.OneOf {
    			m.visitNestedValueValidation(&s.ValueValidation.OneOf[i])
    		}
    		if s.ValueValidation.Not != nil {
    			m.visitNestedValueValidation(s.ValueValidation.Not)
    		}
    	}
    
    	return ret
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/compress/gzip/gunzip.go

    		if s, err = z.readString(); err != nil {
    			return hdr, noEOF(err)
    		}
    		hdr.Name = s
    	}
    
    	if flg&flagComment != 0 {
    		if s, err = z.readString(); err != nil {
    			return hdr, noEOF(err)
    		}
    		hdr.Comment = s
    	}
    
    	if flg&flagHdrCrc != 0 {
    		if _, err = io.ReadFull(z.r, z.buf[:2]); err != nil {
    			return hdr, noEOF(err)
    		}
    		digest := le.Uint16(z.buf[:2])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    		ret.AllOf = append(ret.AllOf, *v.AllOf[i].toKubeOpenAPI())
    	}
    	for i := range v.AnyOf {
    		ret.AnyOf = append(ret.AnyOf, *v.AnyOf[i].toKubeOpenAPI())
    	}
    	for i := range v.OneOf {
    		ret.OneOf = append(ret.OneOf, *v.OneOf[i].toKubeOpenAPI())
    	}
    	ret.Not = v.Not.toKubeOpenAPI()
    }
    
    func (vv *NestedValueValidation) toKubeOpenAPI() *spec.Schema {
    	if vv == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/DialectVersion.java

         *            may be null for open end
         * @return range of versions
         */
        public static Set<DialectVersion> range ( DialectVersion min, DialectVersion max ) {
            EnumSet<DialectVersion> vers = EnumSet.noneOf(DialectVersion.class);
            for ( DialectVersion ver : values() ) {
    
                if ( min != null && !ver.atLeast(min) ) {
                    continue;
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/PosixFilePermissionConverter.java

    @SuppressWarnings({"Since15", "OctalInteger"})
    public class PosixFilePermissionConverter {
    
        public static Set<PosixFilePermission> convertToPermissionsSet(int mode) {
            Set<PosixFilePermission> result = EnumSet.noneOf(PosixFilePermission.class);
    
            if (isSet(mode, 0400)) {
                result.add(OWNER_READ);
            }
            if (isSet(mode, 0200)) {
                result.add(OWNER_WRITE);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/deepcopy.go

    	if in.AllOf != nil {
    		in, out := &in.AllOf, &out.AllOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    
    	if in.OneOf != nil {
    		in, out := &in.OneOf, &out.OneOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

    void ConvertLSTMCellSimpleToFusedLSTM::SetCellLayerNormCoefficients() {
      cell_layer_norm_coefficients_ = none_;
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetInputLayerNormCoefficients() {
      input_layer_norm_coefficients_ = none_;
    }
    
    void ConvertLSTMCellSimpleToFusedLSTM::SetForgetLayerNormCoefficients() {
      forget_layer_norm_coefficients_ = none_;
    }
    void ConvertLSTMCellSimpleToFusedLSTM::SetOutputLayerNormCoefficients() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. src/fmt/scan.go

    func (s *ss) scanNumber(digits string, haveDigits bool) string {
    	if !haveDigits {
    		s.notEOF()
    		if !s.accept(digits) {
    			s.errorString("expected integer")
    		}
    	}
    	for s.accept(digits) {
    	}
    	return string(s.buf)
    }
    
    // scanRune returns the next rune value in the input.
    func (s *ss) scanRune(bitSize int) int64 {
    	s.notEOF()
    	r := s.getRune()
    	n := uint(bitSize)
    	x := (int64(r) << (64 - n)) >> (64 - n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top