Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for describeTo (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    // describe returns a string describing the type typ contained within the type
    // set of inType. If non-empty, inName is used as the name of inType (this is
    // necessary so that we can use alias type names that may not be reachable from
    // inType itself).
    func describe(typ, inType types.Type, inName string) string {
    	name := inName
    	if typ != inType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """A problems description API
        |
        |This project provides base classes to describe problems and their
        |solutions, in a way that enforces the creation of good error messages.
        |
        |It's a stripped down version of the original code available
        |at https://github.com/melix/jdoctor/
    """.trimMargin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. docker-buildx.sh

    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:latest" \
    	-t "quay.io/minio/minio:latest" \
    	-t "minio/minio:${release}" \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[compatibility]]
    = Compatibility Matrix
    
    The sections below describe Gradle's compatibility with several integrations.
    Versions not listed here may or may not work.
    
    == Java
    A Java version between 8 and 22 is required to execute Gradle.
    Java 23 and later versions are not yet supported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// Analyzer that produced the diagnostic;
    	// see https://pkg.go.dev/net/url#URL.ResolveReference.
    	URL string
    
    	// SuggestedFixes is an optional list of fixes to address the
    	// problem described by the diagnostic, each one representing
    	// an alternative strategy; at most one may be applied.
    	SuggestedFixes []SuggestedFix
    
    	// Related contains optional secondary positions and messages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * Analysis API message bus: [analysisMessageBus].
     *
     * See the individual listener interfaces for documentation about the events described by these topics:
     *
     *  - [KotlinModuleStateModificationListener]
     *  - [KotlinModuleOutOfBlockModificationListener]
     *  - [KotlinGlobalModuleStateModificationListener]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/os/pidfd_linux.go

    	}
    	return h, nil
    }
    
    // _P_PIDFD is used as idtype argument to waitid syscall.
    const _P_PIDFD = 3
    
    func (p *Process) pidfdWait() (*ProcessState, error) {
    	// When pidfd is used, there is no wait/kill race (described in CL 23967)
    	// because the PID recycle issue doesn't exist (IOW, pidfd, unlike PID,
    	// is guaranteed to refer to one particular process). Thus, there is no
    	// need for the workaround (blockUntilWaitable + sigMu) from pidWait.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/options/options.go

    	corev1 "k8s.io/client-go/listers/core/v1"
    	netutils "k8s.io/utils/net"
    )
    
    const defaultEtcdPathPrefix = "/registry/apiextensions.kubernetes.io"
    
    // CustomResourceDefinitionsServerOptions describes the runtime options of an apiextensions-apiserver.
    type CustomResourceDefinitionsServerOptions struct {
    	ServerRunOptions   *genericoptions.ServerRunOptions
    	RecommendedOptions *genericoptions.RecommendedOptions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

     * <pre>
     * htmlDependencyReport {
     *     reports.html.outputLocation = file("build/reports/project/dependencies")
     * }
     * </pre>
     */
    @UntrackedTask(because = "We can't describe the dependency tree of all projects as input")
    public abstract class HtmlDependencyReportTask extends AbstractDependencyReportTask implements Reporting<DependencyReportContainer> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    	return k.id
    }
    
    func (k kubeComponent) Close() error {
    	if k.inbound != nil {
    		k.inbound.Close()
    	}
    	if k.outbound != nil {
    		k.outbound.Close()
    	}
    	return nil
    }
    
    // WaypointProxy describes a waypoint proxy deployment
    type WaypointProxy interface {
    	Namespace() namespace.Instance
    	Inbound() string
    	Outbound() string
    	PodIP() string
    }
    
    // NewWaypointProxy creates a new WaypointProxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top