Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,370 for happens (0.12 sec)

  1. tensorflow/c/experimental/ops/gen/common/case_format.cc

        }
    
        // at this point we are no longer at the start of a word:
        wordStart = false;
        // .. or the input:
        inputStart = false;
      }
    
      if (wordStart) {
        // This only happens with a trailing delimiter, which should remain.
        result.push_back(delimiter);
      }
    
      return result;
    }
    
    }  // namespace
    
    //
    // Public interface
    //
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/sync/pool.go

    	// Check whether p is nil to get a panic.
    	// Otherwise the nil dereference happens while the m is pinned,
    	// causing a fatal error rather than a panic.
    	if p == nil {
    		panic("nil Pool")
    	}
    
    	pid := runtime_procPin()
    	// In pinSlow we store to local and then to localSize, here we load in opposite order.
    	// Since we've disabled preemption, GC cannot happen in between.
    	// Thus here we must observe local at least as large localSize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_linux_arm64.go

    	return ok && (major > 4 || major == 4 && minor >= 11)
    }
    
    func doinit() {
    	if err := readHWCAP(); err != nil {
    		// We failed to read /proc/self/auxv. This can happen if the binary has
    		// been given extra capabilities(7) with /bin/setcap.
    		//
    		// When this happens, we have two options. If the Linux kernel is new
    		// enough (4.11+), we can read the arm64 registers directly which'll
    		// trap into the kernel and then return back to userspace.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    		// we allow removing all client ca bundles because the server is still secure when this happens. it just means
    		// that there isn't a hint to clients about which client-cert to used.  this happens when there is no client-ca
    		// yet known for authentication, which can happen in aggregated apiservers and some kube-apiserver deployment modes.
    		newContent.clientCA = caBundleContent{caBundle: currClientCABundle}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *
     * All modification events are guaranteed to be published in the write action in which the modification happens. Beyond that, the exact
     * timing is not strictly defined for most modification events.
     *
     * Most modification events may be published before or after a modification, so subscribers should not assume that the modification has or
     * hasn't happened yet. The reason for this design decision is that some of the underlying events (such as PSI tree changes) may be
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/sync/pool_test.go

    package sync_test
    
    import (
    	"runtime"
    	"runtime/debug"
    	"slices"
    	. "sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    func TestPool(t *testing.T) {
    	// disable GC so we can control when it happens.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    	var p Pool
    	if p.Get() != nil {
    		t.Fatal("expected empty")
    	}
    
    	// Make sure that the goroutine doesn't migrate to another P
    	// between Put and Get calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/html/template/doc.go

    template author should run as a result of the same."
    
    Least Surprise Property:
    "A developer (or code reviewer) familiar with HTML, CSS, and JavaScript, who
    knows that contextual autoescaping happens should be able to look at a {{.}}
    and correctly infer what sanitization happens."
    
    Previously, ECMAScript 6 template literal were disabled by default, and could be
    enabled with the GODEBUG=jstmpllitinterp=1 environment variable. Template
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

                return ClassLoader.getSystemClassLoader().loadClass(agentClassName);
            } catch (ClassNotFoundException e) {
                // This typically means that the agent is not loaded at all.
                // For now, this happens when running in a no-daemon mode, or when the Gradle distribution is not available.
                LoggerFactory.getLogger(AgentControl.class).debug("Agent {} is not loaded", agentClassName);
            }
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCompositeBuildsIntegrationTest.groovy

                fileChanged("libs/build.gradle")
                projectConfigured(":plugins")
                projectsConfigured(":libs:a", ":libs:b") // TODO - should not be configured, but this currently happens to calculate the dependency substitutions
                modelsCreated(":libs")
                modelsReused(":", ":plugins", ":libs:a", ":libs:b")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

            resolveD.children == [downloadDMavenMetadata, downloadDPom]
    
            resolveCompileFiles.parent == applyRootBuildScript
            resolveCompileFiles.children.size() == 3 // resolution happens in parallel, so the operations may appear in any order
            resolveCompileFiles.children.contains(resolveArtifactB)
            resolveCompileFiles.children.contains(resolveArtifactC)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top