Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for harmless (0.26 sec)

  1. src/internal/coverage/cfile/testdata/harness.go

    Russ Cox <******@****.***> 1715803583 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	// to run on hosts with lots of iptables rules, we don't bother to do this on
    	// every sync in large clusters. (Stale chains will not be referenced by any
    	// active rules, so they're harmless other than taking up memory.)
    	deletedChains := 0
    	if !proxier.largeClusterMode || time.Since(proxier.lastIPTablesCleanup) > proxier.syncPeriod {
    		proxier.iptablesData.Reset()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    At this stage, you **must** perform manual verification and check what happens.
    Several things can happen:
    
    * a dependency was tampered in the local dependency cache of Gradle.
    This is usually harmless: erase the file from the cache and Gradle would redownload the dependency.
    * a dependency is available in multiple sources with slightly different binaries (additional whitespace, ...)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    // addIdleMarkWorker attempts to add a new idle mark worker.
    //
    // If this returns true, the caller must become an idle mark worker unless
    // there's no background mark worker goroutines in the pool. This case is
    // harmless because there are already background mark workers running.
    // If this returns false, the caller must NOT become an idle mark worker.
    //
    // nosplit because it may be called without a P.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	// function type to the substitution table, which is not
    	// correct; however, the member function type will never be
    	// used in a substitution, so putting the wrong type in the
    	// substitution table is harmless.
    	mem := st.demangleType(isCast)
    	return &PtrMem{Class: cl, Member: mem}
    }
    
    // compactNumber parses:
    //
    //	<non-negative number> _
    func (st *state) compactNumber() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/emitdata_test.go

    	}
    }
    
    // buildHarness builds the helper program "harness.exe".
    func buildHarness(t *testing.T, dir string, opts []string) string {
    	harnessPath := filepath.Join(dir, "harness.exe")
    	harnessSrc := filepath.Join("testdata", "harness.go")
    	args := []string{"build", "-o", harnessPath}
    	args = append(args, opts...)
    	args = append(args, harnessSrc)
    	//t.Logf("harness build: go %+v\n", args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    		// cleanly on both sides, there is no error.
    		select {
    		case <-cs.peerClosed:
    			err = nil
    		default:
    		}
    	}
    	if err != nil {
    		cs.abortStream(err) // possibly redundant, but harmless
    		if cs.sentHeaders {
    			if se, ok := err.(http2StreamError); ok {
    				if se.Cause != http2errFromPeer {
    					cc.writeStreamReset(cs.ID, se.Code, err)
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomPointerFactory.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.harness;
    
    import java.util.Locale;
    
    import org.apache.commons.jxpath.ri.QName;
    import org.apache.commons.jxpath.ri.model.NodePointer;
    import org.apache.commons.jxpath.ri.model.NodePointerFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomAttributeIterator.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.harness;
    
    import java.util.List;
    import java.util.Map;
    import java.util.stream.Collectors;
    
    import org.apache.commons.jxpath.ri.QName;
    import org.apache.commons.jxpath.ri.model.NodeIterator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ConcurrentDependencyResolutionIntegrationTest.groovy

            requireOwnGradleUserHomeDir()
            executer.withArgument('--parallel')
            executer.withArgument('--max-workers=8')
        }
    
        @Issue("gradle/performance#502")
        def "local component selection harness test: thread-safety"() {
            given:
            buildFile << '''
                 def usage = Attribute.of('usage', String)
                 allprojects {
    
                    dependencies {
                        attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top