Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for harmless (0.67 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/regexp/testdata/testregex.c

    #pragma prototyped noticed
    
    /*
     * regex(3) test harness
     *
     * build:	cc -o testregex testregex.c
     * help:	testregex --man
     * note:	REG_* features are detected by #ifdef; if REG_* are enums
     *		then supply #define REG_foo REG_foo for each enum REG_foo
     *
     *	Glenn Fowler <******@****.***>
     *	AT&T Research
     *
     * PLEASE: publish your tests so everyone can benefit
     *
     * The following license covers testregex.c and all associated test data.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

    import org.apache.maven.model.Profile;
    import org.apache.maven.model.ReportPlugin;
    import org.apache.maven.model.ReportSet;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.project.harness.PomTestWrapper;
    import org.codehaus.plexus.testing.PlexusTest;
    import org.eclipse.aether.DefaultRepositorySystemSession;
    import org.eclipse.aether.internal.impl.SimpleLocalRepositoryManagerFactory;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. src/testing/testing.go

    	fuzzTargets []InternalFuzzTarget
    	examples    []InternalExample
    
    	timer     *time.Timer
    	afterOnce sync.Once
    
    	numRun int
    
    	// value to pass to os.Exit, the outer test func main
    	// harness calls os.Exit with this code. See #34129.
    	exitCode int
    }
    
    // testDeps is an internal interface of functionality that is
    // passed into this package by a test's generated main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/regalloc.go

    	// to put it yet, so we leave it blockless for now.
    	spill := s.f.newValueNoBlock(OpStoreReg, v.Type, v.Pos)
    	// We also don't know what the spill's arg will be.
    	// Leave it argless for now.
    	s.setOrig(spill, v)
    	vi.spill = spill
    	vi.restoreMin = s.sdom[b.ID].entry
    	vi.restoreMax = s.sdom[b.ID].exit
    	return spill
    }
    
    // allocValToReg allocates v to a register selected from regMask and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top