Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,201 for maxline (0.33 sec)

  1. pkg/apis/resource/validation/validation.go

    		}
    	}
    	if len(resourceHandles) > maxSize {
    		// Dumping the entire field into the error message is likely to be too long,
    		// in particular when it is already beyond the maximum size. Instead this
    		// just shows the number of entries.
    		allErrs = append(allErrs, field.TooLongMaxLength(fldPath, len(resourceHandles), maxSize))
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    Target machines - defaults to the build host::
    The target machine expresses which machines the application expects to run.
    A target machine is identified by its operating system and architecture.
    Gradle uses the target machine to decide which tool chain to choose based on availability on the host machine.
    
    The target machine can be configured as follows:
    
    .Configure application target machines
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. apache-maven/README.txt

      ----------
    
      Home Page:          https://maven.apache.org/
      Downloads:          https://maven.apache.org/download.html
      Release Notes:      https://maven.apache.org/docs/history.html
      Mailing Lists:      https://maven.apache.org/mailing-lists.html
      Source Code:        https://gitbox.apache.org/repos/asf/maven.git
      Issue Tracking:     https://issues.apache.org/jira/browse/MNG
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Mar 13 20:21:20 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  4. cluster/get-kube-binaries.sh

        CLIENT_ARCH="${KUBERNETES_CLIENT_ARCH}"
      else
        # TODO: migrate the kube::util::host_platform function out of hack/lib and
        # use it here.
        local machine
        machine="$(uname -m)"
        case "${machine}" in
          x86_64*|i?86_64*|amd64*)
            CLIENT_ARCH="amd64"
            ;;
          aarch64*|arm64*)
            CLIENT_ARCH="arm64"
            ;;
          arm*)
            CLIENT_ARCH="arm"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java

        @Deprecated
        protected void getTransfer(Resource resource, File destination, InputStream input, boolean closeInput, int maxSize)
                throws TransferFailedException {
            addTransfer("getTransfer " + resource.getName());
            super.getTransfer(resource, destination, input, closeInput, maxSize);
        }
    
        public void get(String resourceName, File destination)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/test/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleUnitTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import org.junit.Test
    
    import org.junit.Assert.*
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    class ExampleUnitTest {
        @Test
        fun addition_isCorrect() {
            assertEquals(4, 2 + 2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/test/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleUnitTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import org.junit.Test
    
    import org.junit.Assert.*
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    class ExampleUnitTest {
        @Test
        fun addition_isCorrect() {
            assertEquals(4, 2 + 2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/test/java/org/gradle/samples/ExampleUnitTest.java

    package org.gradle.samples;
    
    import org.junit.Test;
    
    import static org.junit.Assert.*;
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
     */
    public class ExampleUnitTest {
        @Test
        public void addition_isCorrect() {
            assertEquals(4, 2 + 2);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/opt.go

    // Copyright 2015 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 ssa
    
    // machine-independent optimization.
    func opt(f *Func) {
    	applyRewrite(f, rewriteBlockgeneric, rewriteValuegeneric, removeDeadValues)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 309 bytes
    - Viewed (0)
  10. src/main/config/es/fess_config_key_match.json

                "type" : "float"
              },
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "maxSize" : {
                "type" : "integer"
              },
              "query" : {
                "type" : "keyword"
              },
              "term" : {
                "type" : "keyword"
              },
              "updatedBy" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top