Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 94 for ONCE (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        The analysis identifies all IslandOps within the graph which could be merged together.
        The goal is to merge as many islands as possible.
        Once analysis is completed, the pass merges all IslandOps in a single scan.
    
        For example given the following program with two disjunct islands:
    
        ```mlir
          func @test(%arg0 : tensor<i1>) -> tensor<f32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <type>String</type>
              <description>Specifies that this profile will be activated based on the project's packaging.</description>
            </field>
            <!--
            This could be included once we teach Maven to deal with multiple versions of the model
            <field>
              <name>custom</name>
              <version>4.1.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/garbagecollector_test.go

    		// * should not be deleted (this is indistinguishable from referencing an unknown kind/version)
    		// * virtual parent should not repeatedly poll attemptToDelete once real parent is observed
    		{
    			name: "child -> existing owner with inaccessible API version (child first)",
    			steps: []step{
    				// setup
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        // If the kernel is with format anythoing other than HWOI, we
        // transpose it to [0,1,o,i] as the TF->TFL pass anticipates this and the
        // kernel format information will be lost once we legalize to TF
        if (!isKernelFormatHWOI(dnums)) {
          SmallVector<int64_t, 4> permutation;
          for (int64_t dim : dnums.getKernelSpatialDimensions()) {
            permutation.push_back(dim);
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    				},
    				Check: check.And(
    					check.OK(),
    					check.RequestHeader("Istio-Custom-Header", "user-defined-value")),
    			},
    			// to keep tests fast, we only run the basic protocol test per-workload and scheme match once (per cluster)
    			targetMatchers:   matchers,
    			viaIngress:       true,
    			workloadAgnostic: true,
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  6. cmd/server_test.go

    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	var buffer bytes.Buffer
    	// data to be written into buffer.
    	data := "1234567890"
    	// seed the random number generator once.
    	rand.Seed(3)
    	// generate a random number between 13 and 200.
    	randInt := getRandomRange(13, 200, -1)
    	// write into buffer till length of the buffer is greater than the generated random number.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      }
    }
    
    void WhileRegionOp::getRegionInvocationBounds(
        ArrayRef<Attribute> operands,
        SmallVectorImpl<InvocationBounds> &invocationBounds) {
      // We execute cond at least once, and body any number of times.
      invocationBounds.emplace_back(InvocationBounds(1, std::nullopt));
      invocationBounds.emplace_back(InvocationBounds::getUnknown());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Print an AST.
    func (ps *printState) print(a AST) {
    	if ps.max > 0 && ps.buf.Len() > ps.max {
    		return
    	}
    
    	c := 0
    	for _, v := range ps.printing {
    		if v == a {
    			// We permit the type to appear once, and
    			// return without printing anything if we see
    			// it twice.  This is for a case like
    			// _Z6outer2IsEPFilES1_, where the
    			// substitution is printed differently the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    String getTestConfiguration(Class); } META-INF/maven/org.codehaus.plexus/plexus-container-default/pom.xml 4.0.0 org.codehaus.plexus plexus-containers 1.0-alpha-32 plexus-container-default Default Plexus Container 1.0-alpha-32 maven-surefire-plugin once **/Test*.java **/Abstract*.java shade-maven-plugin org.codehaus.mojo 1.0-alpha-9 package shade classworlds:classworlds junit:junit jmock:jmock org.codehaus.plexus:plexus-classworlds org.codehaus.plexus:plexus-utils org.codehaus.plexus plexus-component-api...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

                 << "got rank = " << input_type.getRank()
                 << ", and axis = " << op.getAxis();
      }
    
      // Make sure all inputs have the same shape and element type.
      // TODO(b/135032063): Simplify once fixed.
      for (Type operand_type : op.getOperandTypes()) {
        if (failed(mlir::verifyCompatibleShape(input_type, operand_type)))
          return op.emitOpError("operands should be of the same type. got ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top