Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for restriction (0.22 sec)

  1. pkg/proxy/nftables/proxier.go

    	// nftables chains can contain the characters [A-Za-z0-9_./-] (but must start with
    	// a letter, underscore, or dot).
    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    	// Thus, we can safely use all Namespace names, Service names, protocol values,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
        for (Operation *user : identity->getUsers()) {
          if (user->getDialect()->getNamespace() != "tf") {
            return failure();
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

            op.getLoc(), tensorflow::GetTypeFromTFTensorShape({1}, shape_dtype),
            num_elements, scalar_zero);
      }
    };
    
    // Note that we ignore the second operand `max_num_elements` as we don't have
    // any restrictions on the number of elements we can support. So this may
    // have a different behavior compared to TensorFlow in case of errors.
    struct ConvertEmptyTensorList
        : public ConvertTensorListInitOp<TF::EmptyTensorListOp> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/types.go

    	// Namespace API objects are cluster-scoped.
    	// "Namespaced" means that only namespaced resources will match this rule.
    	// "*" means that there are no scope restrictions.
    	// Subresources match the scope of their parent resource.
    	// Default is "*".
    	//
    	// +optional
    	Scope *ScopeType
    }
    
    // ScopeType specifies the type of scope being used
    type ScopeType string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    	"fmt"
    	"io"
    	"net/url"
    	"os"
    	slashpath "path"
    	"runtime"
    	"strings"
    	"syscall"
    	"testing"
    
    	"github.com/google/uuid"
    )
    
    func TestCheckPathLength(t *testing.T) {
    	// Check path length restrictions are not same on windows/darwin
    	if runtime.GOOS == "windows" || runtime.GOOS == "darwin" {
    		t.Skip()
    	}
    
    	testCases := []struct {
    		path        string
    		expectedErr error
    	}{
    		{".", errFileAccessDenied},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Namespace API objects are cluster-scoped.
      // "Namespaced" means that only namespaced resources will match this rule.
      // "*" means that there are no scope restrictions.
      // Subresources match the scope of their parent resource.
      // Default is "*".
      //
      // +optional
      optional string scope = 4;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     ** `ProviderFactory.property(Class)`
     * Tasks configured and registered with the <<task_configuration_avoidance#sec:task_configuration_avoidance_migration_guidelines,task configuration avoidance>> APIs have more restrictions on the other methods that can be called from a configuration action.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. src/time/time.go

    		qmod2 = int(sec/d1) & 1
    		r = Duration(sec%d1)*Second + Duration(nsec)
    
    	// General case.
    	// This could be faster if more cleverness were applied,
    	// but it's really only here to avoid special case restrictions in the API.
    	// No one will care about these cases.
    	default:
    		// Compute nanoseconds as 128-bit number.
    		sec := uint64(sec)
    		tmp := (sec >> 32) * 1e9
    		u1 := tmp >> 32
    		u0 := tmp << 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("version"), spec.Version, "must match the first version in spec.versions"))
    		}
    	}
    
    	// in addition to the basic name restrictions, some names are required for spec, but not for status
    	if len(spec.Names.Plural) == 0 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("names", "plural"), ""))
    	}
    	if len(spec.Names.Singular) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	// For a server up to TLS 1.2, it can also implement crypto.Decrypter with
    	// an RSA PublicKey.
    	PrivateKey crypto.PrivateKey
    	// SupportedSignatureAlgorithms is an optional list restricting what
    	// signature algorithms the PrivateKey can be used for.
    	SupportedSignatureAlgorithms []SignatureScheme
    	// OCSPStaple contains an optional OCSP response which will be served
    	// to clients that request it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top