Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for describes (0.23 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <name>licenses</name>
              <version>3.0.0+</version>
              <description>
                <![CDATA[
                This element describes all the licenses for this project.
                Each license is described by a {@code license} element, which
                is then described by additional elements.
                Projects should only list the license(s) that applies to the project
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	"cmd/go/internal/search"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    	"cmd/go/internal/vcs"
    	"cmd/internal/pkgpattern"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    )
    
    // A Package describes a single package found in a directory.
    type Package struct {
    	PackagePublic                 // visible in 'go list'
    	Internal      PackageInternal // for use inside go command only
    }
    
    type PackagePublic struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		desc:          prometheus.NewDesc("minio_bucket_stats", "Statistics exposed by MinIO server cluster wide per bucket", nil, nil),
    	}
    }
    
    // Describe sends the super-set of all possible descriptors of metrics
    func (c *minioBucketCollector) Describe(ch chan<- *prometheus.Desc) {
    	ch <- c.desc
    }
    
    // Collect is called by the Prometheus registry when collecting metrics.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	if v.flag == 0 {
    		panic(&ValueError{"reflect.Value.Type", Invalid})
    	}
    
    	typ := v.typ()
    	if v.flag&flagMethod == 0 {
    		return toRType(v.typ())
    	}
    
    	// Method value.
    	// v.typ describes the receiver, not the method type.
    	i := int(v.flag) >> flagMethodShift
    	if v.typ().Kind() == abi.Interface {
    		// Method on interface.
    		tt := (*interfaceType)(unsafe.Pointer(typ))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //
    // For more about using 'go get' to update the minimum Go version and
    // suggested Go toolchain, see https://go.dev/doc/toolchain.
    //
    // For more about specifying packages, see 'go help packages'.
    //
    // This text describes the behavior of get using modules to manage source
    // code and dependencies. If instead the go command is running in GOPATH
    // mode, the details of get's flags and effects change, as does 'go help get'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	ReplicateHealDelete = "replicate:heal:delete"
    )
    
    var (
    	globalReplicationPool  *ReplicationPool
    	globalReplicationStats *ReplicationStats
    )
    
    // ReplicationPool describes replication pool
    type ReplicationPool struct {
    	// atomic ops:
    	activeWorkers    int32
    	activeMRFWorkers int32
    
    	objLayer   ObjectLayer
    	ctx        context.Context
    	priority   string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

              exit 2
            fi
            if gcloud compute addresses describe "$1" --project "${PROJECT}" --region "${REGION}" >/dev/null 2>&1; then
              break
            fi
            echo "Master IP not visible yet. Waiting..."
            sleep 5
          done
          break
        fi
    
        if gcloud compute addresses describe "$1" \
          --project "${PROJECT}" \
          --region "${REGION}" >/dev/null 2>&1; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/asm6.go

    	{obj.ADUFFZERO, yduff, Px, opBytes{0xe8}},
    
    	{obj.AEND, nil, 0, opBytes{}},
    	{0, nil, 0, opBytes{}},
    }
    
    var opindex [(ALAST + 1) & obj.AMask]*Optab
    
    // useAbs reports whether s describes a symbol that must avoid pc-relative addressing.
    // This happens on systems like Solaris that call .so functions instead of system calls.
    // It does not seem to be necessary for any other systems. This is probably working
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    // an underlying TCP connection after making an http.Request with Request.Close set.
    //
    // It tests the behavior by making an HTTP request to a server which
    // describes the source connection it got (remote port number +
    // address of its net.Conn).
    func TestTransportConnectionCloseOnRequest(t *testing.T) {
    	run(t, testTransportConnectionCloseOnRequest, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	for i := 0; i < 3; i++ {
    		c <- i
    	}
    	if l, m := cv.Len(), cv.Cap(); l != len(c) || m != cap(c) {
    		t.Errorf("Len/Cap = %d/%d want %d/%d", l, m, len(c), cap(c))
    	}
    }
    
    // caseInfo describes a single case in a select test.
    type caseInfo struct {
    	desc      string
    	canSelect bool
    	recv      Value
    	closed    bool
    	helper    func()
    	panic     bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top