Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 8,457 for internally (0.16 sec)

  1. src/cmd/go/testdata/script/gcflags_patterns.txt

    [!case-sensitive] cd $WORK/GoPath/src/my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    # cgo.a should not be a dependency of internally-linked go package
    go build -ldflags='-linkmode=external -linkmode=internal' -n prog.go
    ! stderr 'packagefile .*runtime/cgo.a'
    
    -- z1/z.go --
    package z1
    import _ "y"
    import _ "z2"
    
    -- z1/z_test.go --
    package z1_test
    import "testing"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderStartParameterConverter.java

     * limitations under the License.
     */
    package org.gradle.tooling.internal.provider;
    
    import org.gradle.TaskExecutionRequest;
    import org.gradle.api.internal.StartParameterInternal;
    import org.gradle.cli.CommandLineArgumentException;
    import org.gradle.cli.CommandLineParser;
    import org.gradle.cli.ParsedCommandLine;
    import org.gradle.internal.DefaultTaskExecutionRequest;
    import org.gradle.launcher.configuration.AllProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/PotentialEdge.java

    import org.gradle.internal.component.model.ComponentGraphResolveState;
    
    import javax.annotation.Nullable;
    
    /**
     * This class wraps knowledge about a potential edge to a component. It's called potential,
     * because when the edge is created we don't know if the target component exists, and, since
     * the edge is created internally by the engine, we don't want to fail if the target component
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/internal/coverage/slicewriter/slicewriter.go

    		towrite = sws.payload[sws.off:]
    	}
    	copy(towrite, p)
    	sws.off += int64(amt)
    	return amt, nil
    }
    
    // Seek repositions the read/write position of the WriteSeeker within
    // its internally maintained slice. Note that it is not possible to
    // expand the size of the slice using SEEK_SET; trying to seek outside
    // the slice will result in an error.
    func (sws *WriteSeeker) Seek(offset int64, whence int) (int64, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. pkg/config/xds/xds.go

    	}
    
    	buf, err := protomarshal.MarshalProtoNames(pbst)
    	if err != nil {
    		return err
    	}
    
    	// If strict is not set, ignore unknown fields as they may be sending versions of
    	// the proto we are not internally using
    	if strict {
    		return protomarshal.Unmarshal(buf, out)
    	}
    	return protomarshal.UnmarshalAllowUnknown(buf, out)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/configgen.go

    type ConfigGenerator interface {
    	// BuildListeners returns the list of inbound/outbound listeners for the given proxy. This is the LDS output
    	// Internally, the computation will be optimized to ensure that listeners are computed only
    	// once and shared across multiple invocations of this function.
    	BuildListeners(node *model.Proxy, push *model.PushContext) []*listener.Listener
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/facts/imports.go

    package facts
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // importMap computes the import map for a package by traversing the
    // entire exported API each of its imports.
    //
    // This is a workaround for the fact that we cannot access the map used
    // internally by the types.Importer returned by go/importer. The entries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    		Authorization: &security.Authorization{
    			Name:      implicitWaypointPolicyName(&waypoint),
    			Namespace: waypoint.Namespace,
    			// note: we don't actually use label selection; the names have an internally well-known format
    			// workload generation will append a reference to this
    			Scope:  security.Scope_WORKLOAD_SELECTOR,
    			Action: security.Action_ALLOW,
    			Groups: []*security.Group{{
    				Rules: []*security.Rules{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. docs/en/docs/benchmarks.md

    But when checking benchmarks and comparisons you should keep the following in mind.
    
    ## Benchmarks and speed
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/continuous/ContinuousIntegrationTestFixtureTest.groovy

                return executer
            }
        }
    
        private GradleHandle setupStubs(AbstractContinuousIntegrationTest sampleTest) {
            sampleTest.results = [] // fields are null for some reason, perhaps Spock internally modifies constructors
            def gradleHandle = Stub(GradleHandle)
            gradleExecuter.withStdinPipe() >> gradleExecuter
            gradleExecuter.withTasks(_) >> gradleExecuter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top