Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for internally (0.37 sec)

  1. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    </head>
    <body>
    <h2>Design</h2>
    These stubs can be thought of as hand-coded mock objects. They allow unit tests to test only specific
    aspects of a component while ignoring others.
    
    These stubs form an internally consistent data-set that is not expected to change. They are
    used to test the individual components in the lifecycle with data that has expected characteristics
    and can be asserted as desired.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/jcifs/smb/NtlmAuthenticator.java

        protected final String getRequestingURL () {
            return this.url;
        }
    
    
        protected final SmbAuthException getRequestingException () {
            return this.sae;
        }
    
    
        /**
         * Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials.
         * 
         * @param url
         * @param sae
         * @return credentials returned by prompt
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top