Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for plfeature (0.2 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            !reshape_shape.hasStaticShape())
          return failure();
    
        // Check that the reshape doesn't modify the last dimension and it restores
        // the input (batch) dimension with the exception of the feature (last)
        // dimension.
        if (output_shape.getShape().empty() || reshape_shape.getShape().empty() ||
            output_shape.getShape().back() != reshape_shape.getShape().back() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	"k8s.io/apiserver/pkg/apis/apiserver"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/pointer"
    )
    
    // utilities for loading JOSE keys.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	"k8s.io/apiserver/pkg/storage/names"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    	storagetesting "k8s.io/apiserver/pkg/storage/testing"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/cache"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    )
    
    var scheme = runtime.NewScheme()
    var codecs = serializer.NewCodecFactory(scheme)
    
    func init() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/client-go/util/flowcontrol"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	internalapi "k8s.io/cri-api/pkg/apis"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/validation/validation_test.go

    	plugincel "k8s.io/apiserver/pkg/admission/plugin/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/features"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/kubernetes/pkg/apis/admissionregistration"
    )
    
    func ptr[T any](v T) *T { return &v }
    
    func strPtr(s string) *string { return &s }
    
    func int32Ptr(i int32) *int32 { return &i }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  6. cmd/object-handlers.go

    		enqueueTransitionImmediate(objInfo, lcEventSrc_s3PutObject)
    		os.Sweep()
    	}
    }
    
    // PutObjectExtractHandler - PUT Object extract is an extended API
    // based off from AWS Snowball feature to auto extract compressed
    // stream will be extracted in the same directory it is stored in
    // and the folder structures will be built out accordingly.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	// LastInsertId returns the integer generated by the database
    	// in response to a command. Typically this will be from an
    	// "auto increment" column when inserting a new row. Not all
    	// databases support this feature, and the syntax of such
    	// statements varies.
    	LastInsertId() (int64, error)
    
    	// RowsAffected returns the number of rows affected by an
    	// update, insert, or delete. Not every database or database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (feature_dim != ShapedType::kDynamic && bias_len != ShapedType::kDynamic &&
          feature_dim != bias_len) {
        return op.emitOpError()
               << "requires channel dimension and feature dimension to match; "
                  "found "
               << feature_dim << " and " << bias_len << ", respectively";
      }
      return success();
    }
    
    LogicalResult BiasAddOp::UpdateDataFormat(StringRef data_format) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    )
    
    // cpuinit sets up CPU feature flags and calls internal/cpu.Initialize. env should be the complete
    // value of the GODEBUG environment variable.
    func cpuinit(env string) {
    	switch GOOS {
    	case "aix", "darwin", "ios", "dragonfly", "freebsd", "netbsd", "openbsd", "illumos", "solaris", "linux":
    		cpu.DebugOptions = true
    	}
    	cpu.Initialize(env)
    
    	// Support cpu feature variables are used in code generated by the compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      # port usage for services.
      # https://techcommunity.microsoft.com/t5/networking-blog/direct-server-return-dsr-in-a-nutshell/ba-p/693710
      if [[ "${WINDOWS_ENABLE_DSR:-}" == "true" ]]; then
        flags+=" --feature-gates=WinDSR=true --enable-dsr=true "
      fi
    
      # Configure flags with explicit empty string values. We can't escape
      # double-quotes, because they still break sc.exe after expansion in the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top