Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 149 for upwards (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `-Dtest.debug` command-line option has been removed — use the <<java_testing#sec:debugging_java_tests,`--debug-jvm` option>> instead.
     * The `-u`/`--no-search-upward` command-line option has been removed — make sure all your builds have a _settings.gradle_ file.
     * The `--recompile-scripts` command-line option has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  2. src/runtime/mprof.go

    // during STW. The caller must call mProf_Flush before calling
    // mProf_NextCycle again.
    //
    // This is called by mark termination during STW so allocations and
    // frees after the world is started again count towards a new heap
    // profiling cycle.
    func mProf_NextCycle() {
    	mProfCycle.increment()
    }
    
    // mProf_Flush flushes the events from the current heap profiling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	}
    
    	cache := store.lock()
    	defer store.unlock()
    
    	// Handle policy mapping removal.
    	if policy == "" {
    		if store.getUsersSysType() == LDAPUsersSysType {
    			// Add a fallback removal towards previous content that may come back
    			// as a ghost user due to lack of delete, this change occurred
    			// introduced in PR #11840
    			store.deleteMappedPolicy(ctx, name, regUser, false)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    // desired state of the spec. The reverse (teardown) is handled in
    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    // (pod is running). If SyncPod exits with a transient error, the next
    // invocation of SyncPod is expected to make progress towards reaching the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ** `$HOME/.gradle-kotlin-dsl/log` on Linux
    ** `$HOME/AppData/Local/gradle-kotlin-dsl/log` on Windows
    * Open an issue on the link:{gradle-issues}[Gradle issue tracker], including as much detail as you can.
    
    From version 5.1 onwards, the log directory is cleaned up automatically.
    It is checked periodically (at most every 24 hours) and log files are deleted if they haven’t been used for 7 days.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Ensure daemonset controller to count old unhealthy pods towards max unavailable budget ([#123233](https://github.com/kubernetes/kubernetes/pull/123233), [@marshallbrekka](https://github.com/marshallbrekka)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// tend to fill in the requirements for their transitive imports (which have
    	// deeper import stacks). So we add the missing dependencies for one depth at
    	// a time, starting with the packages actually in "all" and expanding outwards
    	// until we have scanned every package that was loaded.
    	var (
    		queue  []*loadPkg
    		queued = map[*loadPkg]bool{}
    	)
    	for _, pkg := range pkgs {
    		if !pkg.flags.has(pkgInAll) {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    #include "tensorflow/c/tf_tensor.h"
    #include "tensorflow/c/tf_tstring.h"
    
    // --------------------------------------------------------------------------
    // C API for TensorFlow.
    //
    // The API leans towards simplicity and uniformity instead of convenience
    // since most usage will be by language specific wrappers.
    //
    // Conventions:
    // * We use the prefix TF_ for everything in the API.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Locate which variable inputs are part of the forwards pass. These will
      // also be used in the backwards pass. We need to create a 'private' copy
      // of the TpuReplicatedInput for for the fowards pass if there are users
      // outside the pass. Note that in the case of the backwards pass existing
      // this will be the case.
      // This means that when we have put all out sections together some resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		"-m", "comment", "--comment", `"kubernetes forwarding conntrack rule"`,
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    	// Add rule to accept traffic towards health check node port
    	proxier.filterRules.Write(
    		"-A", string(kubeNodePortChain),
    		"-m", "comment", "--comment", proxier.ipsetList[kubeHealthCheckNodePortSet].getComment(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top