Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 279 for Vasiliy (0.16 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelData.java

    /**
     * Holds a model along with some auxiliary information. This internal utility class assists the model builder during POM
     * processing by providing a means to transport information that cannot be (easily) extracted from the model itself.
     */
    record ModelData(ModelSource source, Model model) {
    
        /**
         * Gets unique identifier of the model
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testgodefs/testdata/main.go

    func main() {
    	pass := true
    
    	// The Go translation of bitfields should not have any of the
    	// bitfield types. The order in which bitfields are laid out
    	// in memory is implementation defined, so we can't easily
    	// know how a bitfield should correspond to a Go type, even if
    	// it appears to be aligned correctly.
    	bitfieldType := reflect.TypeOf(bitfields{})
    	check := func(name string) {
    		_, ok := bitfieldType.FieldByName(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/c-life.c

    // license that can be found in the LICENSE file.
    
    #include <assert.h>
    #include "life.h"
    #include "_cgo_export.h"
    
    const int MYCONST = 0;
    
    // Do the actual manipulation of the life board in C.  This could be
    // done easily in Go, we are just using C for demonstration
    // purposes.
    void
    Step(int x, int y, int *a, int *n)
    {
    	struct GoStart_return r;
    
    	// Use Go to start 4 goroutines each of which handles 1/4 of the
    	// board.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

    /**
     * A basic location pointing to a specific part of a file using line number, column, and length for coordinates.
     * <p>
     * The line and column coordinates are one-indexed so that they can be easily matched to the content of a UI editor interface.
     */
    public interface LineInFileLocation extends FileLocation {
    
        /**
         * The line number within the file.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. src/internal/obscuretestdata/obscuretestdata.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package obscuretestdata contains functionality used by tests to more easily
    // work with testdata that must be obscured primarily due to
    // golang.org/issue/34986.
    package obscuretestdata
    
    import (
    	"encoding/base64"
    	"io"
    	"os"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:47:58 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. .github/pull_request_template.md

    Following this checklist to help us incorporate your
    contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/browse/MNG) filed
           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  7. src/internal/trace/internal/testgen/go122/trace.go

    func (t *Trace) DisableTimestamps() {
    	t.validTimestamps = false
    }
    
    // Generation creates a new trace generation.
    //
    // This provides more structure than Event to allow for more easily
    // creating complex traces that are mostly or completely correct.
    func (t *Trace) Generation(gen uint64) *Generation {
    	g := &Generation{
    		trace:   t,
    		gen:     gen,
    		strings: make(map[string]uint64),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. pkg/cluster/ports/ports.go

    */
    
    package ports
    
    import (
    	cpoptions "k8s.io/cloud-provider/options"
    )
    
    // In this file, we can see all default port of cluster.
    // It's also an important documentation for us. So don't remove them easily.
    const (
    	// ProxyStatusPort is the default port for the proxy metrics server.
    	// May be overridden by a flag at startup.
    	ProxyStatusPort = 10249
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 23:28:05 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testlife/testdata/c-life.c

    // license that can be found in the LICENSE file.
    
    #include <assert.h>
    #include "life.h"
    #include "_cgo_export.h"
    
    const int MYCONST = 0;
    
    // Do the actual manipulation of the life board in C.  This could be
    // done easily in Go, we are just using C for demonstration
    // purposes.
    void
    Step(int x, int y, int *a, int *n)
    {
    	struct GoStart_return r;
    
    	// Use Go to start 4 goroutines each of which handles 1/4 of the
    	// board.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/doc.go

    //
    // 5. Versioned packages have conversion functions which convert to
    // and from the internal version.
    //
    // 6. You'll continue to support older versions according to your
    // deprecation policy, and you can easily provide a program/library
    // to update old versions into new versions because of 5.
    //
    // 7. All of your serializations and deserializations are handled in a
    // centralized place.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 17 18:08:55 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top