Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for describeTo (0.18 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. 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)
  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/cmd/go/alldocs.go

    // serving only as a check that the packages can be built.
    //
    // The -o flag forces build to write the resulting executable or object
    // to the named output file or directory, instead of the default behavior described
    // in the last two paragraphs. If the named output is an existing directory or
    // ends with a slash or backslash, then any resulting executables
    // will be written to that directory.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/reflect/value.go

    	// stack when it finds our caller, makeFuncStub. Make sure it
    	// doesn't get garbage collected.
    	runtime.KeepAlive(ctxt)
    }
    
    // methodReceiver returns information about the receiver
    // described by v. The Value v may or may not have the
    // flagMethod bit set, so the kind cached in v.flag should
    // not be used.
    // The return value rcvrtype gives the method's actual receiver type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	// The Microsoft documentation for this struct¹ describes three additional
    	// fields: dwFileType, dwCreatorType, and wFinderFlags. However, those fields
    	// are empirically only present in the macOS port of the Win32 API,² and thus
    	// not needed for binaries built for Windows.
    	//
    	// ¹ https://docs.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-win32_find_dataw describe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  7. 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)
  8. doc/go1.17_spec.html

    is the set of all methods declared with receiver <code>*T</code> or <code>T</code>
    (that is, it also contains the method set of <code>T</code>).
    Further rules apply to structs containing embedded fields, as described
    in the section on <a href="#Struct_types">struct types</a>.
    Any other type has an empty method set.
    In a method set, each method must have a
    <a href="#Uniqueness_of_identifiers">unique</a>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

              "nodes after running them or create a new session.");
        }
      }
    }
    
    namespace {
    
    // Helper method that creates a shape handle for a shape described by dims.
    tensorflow::shape_inference::ShapeHandle ShapeHandleFromDims(
        tensorflow::shape_inference::InferenceContext* ic, int num_dims,
        const int64_t* dims) {
      if (num_dims != -1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * the query result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <p>Note that if you don't call {@code closeAsync()}, the captured objects will not be closed. The
     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
Back to top