Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 226 for touches (0.14 sec)

  1. hack/make-rules/verify.sh

        "verify-golangci-lint.sh"              # runs in separate pull-kubernetes-verify-lint
        )
    fi
    
    # Exclude readonly package check in certain cases, aka, in periodic jobs we don't care and a readonly package won't be touched
    if [[ ${EXCLUDE_READONLY_PACKAGE:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-readonly-packages.sh"  # skip in CI, if env is set
        )
    fi
    
    # Only run known fast checks in quick mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

                        from("external/d")
                    }
    
                    archiveFileName = "external.jar"
                }
            """
            ['a', 'b', 'c', 'd'].each {
                file("external/$it").touch()
            }
            // Generate external jar with entries in alphabetical order
            def externalJar = file('build/libs/external.jar')
            succeeds(":a:javadoc", "-Dreverse=false")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. hack/verify-openapi-docs-urls.sh

    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	// REST API operations return like list use the RV of etcd, but the storage cacher's reflector's list
    	// can get a different RV because etcd can be touched in between the initial list operation (if that's what you're doing first)
    	// and the storage cache reflector starting.
    	// Later, you can issue a watch with the REST apis list.RV and end up earlier than the storage cacher.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/top.html

            const hdr = document.getElementById(id);
            if (hdr == null) return;
            const fn = function() { sortBy(column) };
            hdr.addEventListener('click', fn);
            hdr.addEventListener('touch', fn);
          }
          bindSort('flathdr1', 'Flat');
          bindSort('flathdr2', 'Flat');
          bindSort('cumhdr1', 'Cum');
          bindSort('cumhdr2', 'Cum');
          bindSort('namehdr', 'Name');
        }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 14:39:18 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/apitesting/fuzzer/valuefuzz.go

    limitations under the License.
    */
    
    package fuzzer
    
    import (
    	"reflect"
    )
    
    // ValueFuzz recursively changes all basic type values in an object. Any kind of references will not
    // be touch, i.e. the addresses of slices, maps, pointers will stay unchanged.
    func ValueFuzz(obj interface{}) {
    	valueFuzz(reflect.ValueOf(obj))
    }
    
    func valueFuzz(obj reflect.Value) {
    	switch obj.Kind() {
    	case reflect.Array:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources-project-builder/plugin-inheritance-merge-order/sub/pom.xml

            <artifactId>maven-it-plugin-expression</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
          <plugin>
            <groupId>org.apache.maven.its.plugins</groupId>
            <artifactId>maven-it-plugin-touch</artifactId>
            <version>2.1-SNAPSHOT</version>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-responses.md

    ```Python
    old_dict = {
        "old key": "old value",
        "second old key": "second old value",
    }
    new_dict = {**old_dict, "new key": "new value"}
    ```
    
    Ici, `new_dict` contiendra toutes les paires clé-valeur de `old_dict` plus la nouvelle paire clé-valeur :
    
    ```Python
    {
        "old key": "old value",
        "second old key": "second old value",
        "new key": "new value",
    }
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java

            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_IE11() {
            getMockRequest().addHeader("user-agent", "Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; Touch; rv:11.0) like Gecko)");
            assertEquals(UserAgentType.IE, userAgentHelper.getUserAgentType());
        }
    
        public void test_getUserAgentType_Chrome() {
            getMockRequest().addHeader("user-agent",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/text/tabwriter/example_test.go

    	fmt.Fprintln(w)
    	w.Flush()
    
    	// Format right-aligned in space-separated columns of minimal width 5
    	// and at least one blank of padding (so wider column entries do not
    	// touch each other).
    	w.Init(os.Stdout, 5, 0, 1, ' ', tabwriter.AlignRight)
    	fmt.Fprintln(w, "a\tb\tc\td\t.")
    	fmt.Fprintln(w, "123\t12345\t1234567\t123456789\t.")
    	fmt.Fprintln(w)
    	w.Flush()
    
    	// output:
    	// a	b	c	d		.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 23 22:09:32 UTC 2016
    - 2K bytes
    - Viewed (0)
Back to top