Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 645 for JPoint (0.35 sec)

  1. src/internal/trace/gc.go

    			// duration, then the windowed MU function is
    			// only defined at a single point, so the MU
    			// distribution is not well-defined.
    			//
    			// 2. If there are no events, then the MU
    			// distribution has no mass.
    			//
    			// Either way, all of the quantiles will have
    			// converged toward the MMU at this point.
    			mu = acc.mmu
    		}
    		out[i] = mu
    	}
    	return out
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. README.md

    ```
    
    The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded
    object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the
    root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.td

          the second argument is the zero point constant (element type: int) and
          the third argument is the inverse scale constant (element type: float).
        * A tensor is dequantized using a `func::FuncOp` whose name contains
          "uniform_dequantize". The first argument is the tensor to be quantized,
          the second argument is the zero point constant (element type: int) and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/go/printer/gobuild.go

    		if pos >= len(p.output) || !isNL(p.output[pos]) {
    			break
    		}
    		pos++
    
    		if blank {
    			insert = pos
    		}
    	}
    
    	// If there is a //go:build comment before the place we identified,
    	// use that point instead. (Earlier in the file is always fine.)
    	if len(p.goBuild) > 0 && p.goBuild[0] < insert {
    		insert = p.goBuild[0]
    	} else if len(p.plusBuild) > 0 && p.plusBuild[0] < insert {
    		insert = p.plusBuild[0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/mbarrier.go

    // handle the profile logging.
    
    // typedmemmove copies a value of type typ to dst from src.
    // Must be nosplit, see #16026.
    //
    // TODO: Perfect for go:nosplitrec since we can't have a safe point
    // anywhere in the bulk barrier or memmove.
    //
    // typedmemmove should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-main/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
    }
    
    description = "Entry point for the Gradle daemon process. Bootstraps the daemon server implementation in :daemon-server."
    
    app {
        mainClassName = "org.gradle.launcher.daemon.bootstrap.GradleDaemon"
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/gradle-cli-main/build.gradle.kts

     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    app {
        mainClassName = "org.gradle.launcher.GradleMain"
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "framework_extension_point_duration_seconds",
    			Help:      "Latency for running all plugins of a specific extension point.",
    			// Start with 0.1ms with the last bucket being [~200ms, Inf)
    			Buckets:        metrics.ExponentialBuckets(0.0001, 2, 12),
    			StabilityLevel: metrics.STABLE,
    		},
    		[]string{"extension_point", "status", "profile"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    // Go value if possible; otherwise it returns x.
    // A complex constant that can be represented as a float (such as 1.2 + 0i)
    // is returned as a floating point value; if a floating point value can be
    // represented as an integer (such as 1.0) it is returned as an integer value.
    // This ensures that constants of different kind but equal value (such as
    // 1.0 + 0i, 1.0, 1) result in the same value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // from the underlying source.
    type watchCacheInterval struct {
    	// startIndex denotes the starting point of the interval
    	// being considered. The value is the index in the actual
    	// source of watchCacheEvents. If the source of events is
    	// the watchCache, then this must be used modulo capacity.
    	startIndex int
    
    	// endIndex denotes the ending point of the interval being
    	// considered. The value is the index in the actual source
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top