Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for ind2 (0.04 sec)

  1. docs/az/docs/index.md

    * `--reload`: kod dəyişikliyindən sonra avtomatik olaraq serveri yenidən işə salır. Bu parametrdən yalnız development mərhələsində istifadə etməliyik.
    
    </details>
    
    ### İndi yoxlayaq
    
    Bu linki brauzerimizdə açaq <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>.
    
    Aşağıdakı kimi bir JSON cavabı görəcəksiniz:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/resource-device-inference.mlir

          %id1 = "tf.Identity"(%id0) : (!tf_res)
            -> !tf_res
          // CHECK-NEXT: "tf.Identity"
          // CHECK-SAME: {device = "/CPU:0"}
          %id2 = "tf.Identity"(%var_handle) : (!tf_res)
            -> !tf_res
          %read = "tf.ReadVariableOp"(%id2) : (!tf_res) -> tensor<32xf32>
          %id3 = "tf.Identity"(%read) : (tensor<32xf32>) -> tensor<32xf32>
          tf_executor.yield
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 17 16:01:45 UTC 2022
    - 18.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/progress/DefaultProgressLoggerFactoryTest.groovy

            }
            1 * progressListener.started({it.description == "op-2"}) >> { ProgressStartEvent event ->
                id2 = event.progressOperationId
                assert event.parentProgressOperationId == null
            }
    
            and:
            [parentId, childId, id2].toSet().size() == 3
        }
    
        def "operation can have parent running in a different thread"() {
            OperationIdentifier parentId
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/integTest/groovy/org/gradle/api/tasks/bundling/WarTaskIntegrationTest.groovy

                }
            }
            createDir('web-inf2') {
                file 'file2.txt'
            }
            and:
            buildFile << """
                task war(type: War) {
                    webInf {
                        from 'web-inf'
                        exclude '**/*.xml'
                    }
                    webInf {
                        from 'web-inf2'
                        into 'dir2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/walk.go

    	if types.IsDirectIface(t) {
    		ptr.SetType(t)
    		ptr.SetTypecheck(1)
    		return ptr
    	}
    	ptr.SetType(types.NewPtr(t))
    	ptr.SetTypecheck(1)
    	ind := ir.NewStarExpr(pos, ptr)
    	ind.SetType(t)
    	ind.SetTypecheck(1)
    	ind.SetBounded(true)
    	return ind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    * If a `groovy-all(-indy)` Jar is found on `classpath`, that jar will be added to `groovyClasspath`.
    * If a `groovy(-indy)` jar is found on `classpath`, and the project has at least one repository declared, a corresponding `groovy(-indy)` repository dependency will be added to `groovyClasspath`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  7. src/go/types/index.go

    			x = 0
    		case length >= 0:
    			// default is length (== capacity) otherwise
    			x = length
    		}
    		ind[i] = x
    	}
    
    	// constant indices must be in range
    	// (check.index already checks that existing indices >= 0)
    L:
    	for i, x := range ind[:len(ind)-1] {
    		if x > 0 {
    			for j, y := range ind[i+1:] {
    				if y >= 0 && y < x {
    					// The value y corresponds to the expression e.Index[i+1+j].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

    int64_t GetElementIndex(llvm::SmallVectorImpl<int64_t> &shape,
                            llvm::SmallVectorImpl<int64_t> &current_index) {
      int64_t ind = 0;
      int64_t mul = 1;
      for (int i = shape.size() - 1; i >= 0; --i) {
        ind += (current_index[i] % shape[i]) * mul;
        mul *= shape[i];
      }
      return ind;
    }
    
    // Helper method that increment index represented in 'current_index_ptr'
    // in the shape of 'result_shape'.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def relativePaths = SnapshotVisitorUtil.getRelativePaths(snapshot)
            then:
            relativePaths == [
                "in1", "in1/linked",
                "in1/linked/in2", "in1/linked/in2/some", "in1/linked/in2/some/dir", "in1/linked/in2/some/dir/file.txt",
                "in1/linked/other", "in1/linked/other/linked3",
                "in1/linked/other/linked3/another", "in1/linked/other/linked3/another/fileLink",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.cc

      if (!const_op) return -1;
      int64_t last_index = -1;
      int64_t first_index = -1;
      for (const auto& ind : const_op.getValue().getValues<APInt>()) {
        if (last_index == -1) {
          last_index = ind.getSExtValue();
          first_index = last_index;
          continue;
        }
        if (last_index + 1 != ind.getSExtValue()) return -1;
        last_index++;
      }
      return first_index;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top