Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 680 for entities (0.12 sec)

  1. staging/src/k8s.io/api/networking/v1alpha1/well_known_labels.go

    	// LabelManagedBy is used to indicate the controller or entity that manages
    	// an IPAddress. This label aims to enable different IPAddress
    	// objects to be managed by different controllers or entities within the
    	// same cluster. It is highly recommended to configure this label for all
    	// IPAddress objects.
    	LabelManagedBy = "ipaddress.kubernetes.io/managed-by"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:56:44 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/html/template/html.go

    	'"':  """,
    	'&':  "&",
    	'\'': "'",
    	'+':  "+",
    	'<':  "&lt;",
    	'>':  "&gt;",
    }
    
    // htmlNormReplacementTable is like htmlReplacementTable but without '&' to
    // avoid over-encoding existing entities.
    var htmlNormReplacementTable = []string{
    	0:    "\uFFFD",
    	'"':  "&#34;",
    	'\'': "&#39;",
    	'+':  "&#43;",
    	'<':  "&lt;",
    	'>':  "&gt;",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_sumdb_golang.txt

    ! stderr github
    ! stderr proxy.golang.org/rsc.io/quote
    stderr sum.golang.org/lookup/rsc.io/quote
    
    go list -mod=mod -x rsc.io/quote  # Add checksums for module source.
    ! stderr .  # Adds checksums, but for entities already in the module cache.
    
    cmp go.sum saved.sum
    
    
    # test fallback to direct
    
    env TESTGOPROXY404=1
    go clean -modcache
    rm go.sum
    
    go list -mod=mod -x -m all  # Download go.mod files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeContainer.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    import java.util.Set;
    
    /**
     * An attribute container is a container of {@link Attribute attributes}, which are
     * strongly typed named entities. Such a container is responsible for storing and
     * getting attributes in a type safe way. In particular, attributes are strongly typed,
     * meaning that when we get a value from the container, the returned value type is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomDomParser.java

        }
    
        public static final class AddDTDFilterInputStream extends FilterInputStream {
            private static final int MARK = 10000;
            private static final String DOCTYPE = "<!DOCTYPE project SYSTEM \"m2-entities.ent\">\n";
    
            private int count;
            private byte[] prefix = DOCTYPE.getBytes();
    
            public AddDTDFilterInputStream(InputStream in) throws IOException {
                super(new BufferedInputStream(in));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     *
     * Currently, the only audience of these events is the build scan plugin.
     * It is concerned with recreating the <i>plain</i> console for an invocation,
     * and associating logging output with tasks, projects, and other logical entities.
     * It does not attempt to emulate the rich console.
     *
     * This solution has some quirks due to how the console output subsystem in Gradle has evolved.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/go/importer/importer.go

    // latter case, importing may fail under circumstances where the
    // exported API is not entirely defined in pure Go source code
    // (if the package API depends on cgo-defined entities, the type
    // checker won't have access to those).
    //
    // The lookup function is called each time the resulting importer needs
    // to resolve an import path. In this mode the importer can only be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     *    session has been invalidated.
     * 2. The module-level service living longer than the analysis session increases the risk of caching invalidated entities in a resolve
     *    extension.
     * 3. Because the [KaResolveExtension] is a [Disposable], if implemented as a module-level service, the service would be disposed too early
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/go/ast/scope.go

    // This file implements scopes and the objects they contain.
    
    package ast
    
    import (
    	"fmt"
    	"go/token"
    	"strings"
    )
    
    // A Scope maintains the set of named language entities declared
    // in the scope and a link to the immediately surrounding (outer)
    // scope.
    //
    // Deprecated: use the type checker [go/types] instead; see [Object].
    type Scope struct {
    	Outer   *Scope
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/FileToRawModelMerger.java

    import org.apache.maven.api.model.ReportPlugin;
    import org.apache.maven.api.model.Reporting;
    import org.apache.maven.model.v4.MavenMerger;
    
    /**
     * As long as Maven controls the BuildPomXMLFilter, the entities that need merging are known.
     * All others can simply be copied from source to target to restore the locationTracker
     *
     * @since 4.0.0
     */
    class FileToRawModelMerger extends MavenMerger {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top