Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 445 for restriction (0.3 sec)

  1. doc/go_spec.html

    </p>
    <p>
    Each code point is distinct; for instance, uppercase and lowercase letters
    are different characters.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may disallow the NUL character (U+0000) in the source text.
    </p>
    <p>
    Implementation restriction: For compatibility with other tools, a
    compiler may ignore a UTF-8-encoded byte order mark
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. src/cmd/link/internal/ld/symtab.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

      // For now, restrict scale adjustment to ops with affine quantized weights,
      // and having weights and biases as constants. This currently only applies to
      // FC and Conv* ops. Restriction for the weight can be relaxed if there are
      // needs for adjusting scale of variable weights.
      auto affine_op = dyn_cast<AffineQuantizedOpInterface>(op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	if named.underlying == nil {
    		named.underlying = Typ[Invalid]
    	}
    
    	// Disallow a lone type parameter as the RHS of a type declaration (go.dev/issue/45639).
    	// We don't need this restriction anymore if we make the underlying type of a type
    	// parameter its constraint interface: if the RHS is a lone type parameter, we will
    	// use its underlying type (like we do for any RHS in a type declaration), and its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types.go

    	// Each volume plugin defines its own supported topology specifications.
    	// An empty TopologySelectorTerm list means there is no topology restriction.
    	// This field is only honored by servers that enable the VolumeScheduling feature.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/s390x/objz.go

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // Each volume plugin defines its own supported topology specifications.
      // An empty TopologySelectorTerm list means there is no topology restriction.
      // This field is only honored by servers that enable the VolumeScheduling feature.
      // +optional
      // +listType=atomic
      repeated k8s.io.api.core.v1.TopologySelectorTerm allowedTopologies = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. pkg/apis/storage/types.go

    	// Restrict the node topologies where volumes can be dynamically provisioned.
    	// Each volume plugin defines its own supported topology specifications.
    	// An empty TopologySelectorTerm list means there is no topology restriction.
    	// This field is only honored by servers that enable the VolumeScheduling feature.
    	// +optional
    	AllowedTopologies []api.TopologySelectorTerm
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    - extensions
    - class
    - convention
    
    Additional to that next words cannot be used as a first subgroup of an alias for dependencies (for bundles, versions and plugins this restriction doesn't apply):
    
    - bundles
    - versions
    - plugins
    
    So for example for dependencies an alias `versions-dependency` is not valid, but `versionsDependency` or `dependency-versions` are valid.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, restriction string) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(keyType)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    	_p1, err = BytePtrFromString(restriction)
    	if err != nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top