Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for prepending (0.21 sec)

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

      return rewriter->create<TF::FillOp>(
          loc,
          tensorflow::GetTypeFromTFTensorShape({-1}, rewriter->getIntegerType(32)),
          shape_tensor, scalar_val);
    }
    
    // Returns a new type by prepending the specified dimension to the shape of
    // the given type if it is a ranked type.
    Type PrependLeadingDimIfRanked(int64_t dim, Type type,
                                   PatternRewriter *rewriter) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. src/time/time.go

    // clock reading if present. If t != u because of different monotonic clock readings,
    // that difference will be visible when printing t.String() and u.String().
    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

         * <li>or <code>null</code> if the resource cannot be resolved.
         * </ul>
         *
         * @return A <code>String[]</code> array of files and directories,
         *         workgroups, servers, or shares depending on the context of the
         *         resource URL
         * @throws SmbException
         */
        public String[] list () throws SmbException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								"name": "2",
    								"key":  "value",
    								"key2": "valid value",
    							},
    						},
    					}}},
    				expectError{
    					applyPatchOperation{
    						"reorder the array, preventing index correlation",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"values": []interface{}{
    								map[string]interface{}{
    									"name": "2",
    									"key":  "value",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	//
    	// When called from the goroutine coordinating the profile, we still have
    	// set gp1.goroutineProfiled to goroutineProfileInProgress and so are still
    	// preventing it from being truly _Grunnable. So we'll use the system stack
    	// to avoid schedule delays.
    	systemstack(func() { saveg(^uintptr(0), ^uintptr(0), gp1, &goroutineProfile.records[offset], pcbuf) })
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    	case token.EQL, token.NEQ, token.LSS, token.LEQ, token.GTR, token.GEQ:
    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    // operands. Otherwise (i.e., typ is not an untyped type anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	//
    	// Higher values reduce contention on scanning indexes (such as
    	// h.reclaimIndex), but increase the minimum latency of the
    	// operation.
    	//
    	// The time required to scan this many pages can vary a lot depending
    	// on how many spans are actually freed. Experimentally, it can
    	// scan for pages at ~300 GB/ms on a 2.6GHz Core i7, but can only
    	// free spans at ~32 MB/ms. Using 512 pages bounds this at
    	// roughly 100µs.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/expr.go

    		return true
    	}
    	return false
    }
    
    // updateExprType updates the type of x to typ and invokes itself
    // recursively for the operands of x, depending on expression kind.
    // If typ is still an untyped and not the final type, updateExprType
    // only updates the recorded untyped type for x and possibly its
    // operands. Otherwise (i.e., typ is not an untyped type anymore,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>Project</code> implementation class.  For example, {@link #getRootProject()} is accessible as the
     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    			Name:        "pod",
    			Namespace:   namespace,
    			Labels:      labels,
    			Annotations: map[string]string{},
    		},
    		Status: v1.PodStatus{
    			PodIP: "1.2.3.4",
    			Phase: v1.PodPending,
    		},
    	}
    	workloadEntry := config.Config{
    		Meta: config.Meta{
    			Name:             "workload",
    			Namespace:        namespace,
    			GroupVersionKind: gvk.WorkloadEntry,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top