Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 742 for comprises (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/types/namespacedname.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package types
    
    // NamespacedName comprises a resource name, with a mandatory namespace,
    // rendered as "<namespace>/<name>".  Being a type captures intent and
    // helps make sure that UIDs, namespaced names and non-namespaced names
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 10:47:59 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    // limitations under the License.
    
    [[build_file_basics]]
    = Build File Basics
    
    Generally, a build script details *build configuration, tasks, and plugins*.
    
    image::gradle-basic-4.png[]
    
    Every Gradle build comprises at least one _build script_.
    
    In the build file, two types of dependencies can be added:
    
    1. The libraries and/or plugins on which Gradle and the build script depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/error_test.go

    // just before (or on the same line as) the offending token.
    //
    // Error comments must be of the form // ERROR rx or /* ERROR rx */
    // where rx is a regular expression that matches the reported error
    // message. The rx text comprises the comment text after "ERROR ",
    // with any white space around it stripped.
    //
    // If the line comment form is used, the reported error's line must
    // match the line of the error comment.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     * <p>
     *  Each single {@link org.gradle.internal.serialize.graph.codecs.Binding binding} comprises:
     *  <ul>
     *     <li>a tag (a unique numeric identifier that represents the type the binding supports)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    `IstioOperatorSpec` has pass-through fields to the Helm values.yaml API, but these are additionally validated through
    a [schema](../operator/pkg/apis/istio/v1alpha1/values_types.proto).
    1. [Controller](#k8s-controller) code. The code comprises the K8s listener, webhook and logic for reconciling the cluster
    to an `IstioOperatorSpec` CR.
    1. [Manifest creation](#manifest-creation) code. User settings are overlaid on top of the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/image/gif/writer.go

    	buf              [256]byte
    	globalColorTable [3 * 256]byte
    	localColorTable  [3 * 256]byte
    }
    
    // blockWriter writes the block structure of GIF image data, which
    // comprises (n, (n bytes)) blocks, with 1 <= n <= 255. It is the
    // writer given to the LZW encoder, which is thus immune to the
    // blocking.
    type blockWriter struct {
    	e *encoder
    }
    
    func (b blockWriter) setup() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/image/gif/reader.go

    	delay    []int
    	disposal []byte
    	image    []*image.Paletted
    	tmp      [1024]byte // must be at least 768 so we can read color table
    }
    
    // blockReader parses the block structure of GIF image data, which comprises
    // (n, (n bytes)) blocks, with 1 <= n <= 255. It is the reader given to the
    // LZW decoder, which is thus immune to the blocking. After the LZW decoder
    // completes, there will be a 0-byte block remaining (0, ()), which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    Gradle then looks for a corresponding build script file, which is used in the configuration phase.
    
    == Build Scripts
    
    Every Gradle build comprises one or more *projects*; a _root_ project and _subprojects_.
    
    A project typically corresponds to a software component that needs to be built, like a library or an application.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    .Processing non-source files for a source set
    image::java-sourcesets-process-resources.png[]
    
    As before, the shaded boxes represent properties of the source set, which in this case comprises the locations of the resource files and where they are copied to.
    
    In addition to the `main` source set, the Java Library Plugin defines a `test` source set that represents the project's tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. src/regexp/regexp.go

    	return 0 // not used
    }
    
    // LiteralPrefix returns a literal string that must begin any match
    // of the regular expression re. It returns the boolean true if the
    // literal string comprises the entire regular expression.
    func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
    	return re.prefix, re.prefixComplete
    }
    
    // MatchReader reports whether the text returned by the [io.RuneReader]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top