Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 405 for nFront (0.15 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/reduce.h

        if (reduce_op.getDimensions().getNumElements() != 1) return failure();
    
        // Check that the operand init is the expected value.
        DenseElementsAttr operand_init;
        if (!matchPattern(reduce_op.getInitValues().front(),
                          m_Constant(&operand_init)))
          return failure();
        if (!IsValueInitValue(operand_init)) return failure();
    
        // Check that the iota init is zero.
        DenseElementsAttr iota_init;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/proxy_dependencies_test.go

    func TestProxyNeedsPush(t *testing.T) {
    	const (
    		svcName        = "svc1.com"
    		privateSvcName = "private.com"
    		drName         = "dr1"
    		vsName         = "vs1"
    		scName         = "sc1"
    		nsName         = "ns1"
    		nsRoot         = "rootns"
    		generalName    = "name1"
    
    		invalidNameSuffix = "invalid"
    	)
    
    	type Case struct {
    		name    string
    		proxy   *model.Proxy
    		configs sets.Set[model.ConfigKey]
    		want    bool
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.cc

    LogicalResult MatchBinaryReduceFunction<void>(mlir::Region& function) {
      Block& body = function.front();
      if (body.getNumArguments() != 2) return failure();
    
      mhlo::ReturnOp return_op = dyn_cast<mhlo::ReturnOp>(body.back());
      if (!return_op) return failure();
      if (return_op.getNumOperands() != 1) return failure();
      if (return_op.getOperands().front() != body.getArgument(1)) return failure();
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/kotlin/styles/gradle.css

        width: 65px;
        height: 65px;
        top: -27px;
        left: -72px;
    }
    
    .library-name a span::before {
        content: 'Kotlin DSL Reference for ';
    }
    
    /* Hide the module name title on the front page */
    
    div.main-content:not([data-page-type]) h1.cover {
        display: none;
    }
    
    /* Capitalize the module name */
    
    div.library-name,
    div.sideMenuPart div.overview:first-child a[href="index.html"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleRepositoryCacheProvider.java

            this.caches = caches;
            this.inMemoryCaches = inMemoryCaches;
        }
    
        /**
         * Returns caches which will also be persisted to disk. They will also have an in-memory
         * front-end, but eventually all results are persisted.
         */
        public ModuleRepositoryCaches getPersistentCaches() {
            return caches;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/util.h

      Block& body = function.front();
      if (body.getNumArguments() != 2) return failure();
    
      mhlo::ReturnOp return_op = dyn_cast<mhlo::ReturnOp>(body.back());
      if (!return_op) return failure();
      if (return_op.getNumOperands() != 1) return failure();
    
      ReductionOp reduce_op = dyn_cast_or_null<ReductionOp>(
          return_op.getOperands().front().getDefiningOp());
      if (!reduce_op) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 08 11:35:25 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/init.go

    			return nil, err
    		}
    	}
    
    	// Checks if an external Front-Proxy CA is provided by the user (when the Front-Proxy CA Cert is present but the Front-Proxy CA Key is not)
    	externalFrontProxyCA, err := certsphase.UsingExternalFrontProxyCA(&cfg.ClusterConfiguration)
    	if externalFrontProxyCA {
    		// In case the certificates signed by Front-Proxy CA (that should be provided by the user) are missing or invalid,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  8. src/os/exec/exec_linux_test.go

    // That can break TestExtraFiles if we create a new thread that creates
    // a new arena and opens the /sys file while we are checking for open
    // file descriptors. Work around the problem by creating threads up front.
    // See issue 25628.
    
    package exec_test
    
    import (
    	"os"
    	"sync"
    	"syscall"
    	"time"
    )
    
    func init() {
    	if os.Getenv("GO_EXEC_TEST_PID") == "" {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 26 14:49:07 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      void EnqueueCallers(func::FuncOp fn);
    
      // Returns the function at the front of the queue.
      func::FuncOp front() { return queue_.front(); }
    
      // Returns whether work queue is empty.
      bool EmptyQueue() const { return queue_.empty(); }
    
      // Returns function from the front of the work queue.
      func::FuncOp pop_front() {
        func::FuncOp ret = queue_.front();
        queue_.pop();
        queue_set_.erase(ret);
        return ret;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/sync/mutex.go

    	// waiter has good chances of losing. In such case it is queued at front
    	// of the wait queue. If a waiter fails to acquire the mutex for more than 1ms,
    	// it switches mutex to the starvation mode.
    	//
    	// In starvation mode ownership of the mutex is directly handed off from
    	// the unlocking goroutine to the waiter at the front of the queue.
    	// New arriving goroutines don't try to acquire the mutex even if it appears
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top