Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for touches (0.11 sec)

  1. pkg/istio-agent/agent_test.go

    		})
    		sds := a.Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    		checkCertsWritten(t, dir)
    
    		// The provisioning certificates should not be touched
    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                                policy.getChecksumPolicy(),
                                false);
    
                        updateCheckManager.touch(artifact, repository, null);
                    } catch (ResourceDoesNotExistException e) {
                        updateCheckManager.touch(artifact, repository, null);
                        throw e;
                    } catch (TransferFailedException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. src/math/big/arith_arm64.s

    	SUB	$1, R0
    two:
    	TBZ	$1, R0, loop
    	LDP.P	16(R8), (R11, R12)
    	LDP.P	16(R9), (R15, R16)
    	ADCS	R15, R11
    	ADCS	R16, R12
    	STP.P	(R11, R12), 16(R10)
    	SUB	$2, R0
    loop:
    	CBZ	R0, done	// careful not to touch the carry flag
    	LDP.P	32(R8), (R11, R12)
    	LDP	-16(R8), (R13, R14)
    	LDP.P	32(R9), (R15, R16)
    	LDP	-16(R9), (R17, R19)
    	ADCS	R15, R11
    	ADCS	R16, R12
    	ADCS	R17, R13
    	ADCS	R19, R14
    	STP.P	(R11, R12), 32(R10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

        @Test
        @UnsupportedWithConfigurationCache(because = "test rely on configuration phase output")
        fun `avoids buildscript recompilation when jar that can not be used for compile avoidance initially on buildsript classpath is touched`() {
            val (className, jarPath) = buildKotlinJarForBuildScriptClasspath(
                """
                inline fun foo() {
                    val sum: (Int, Int) -> Int = { x, y -> x + y }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/syscall/syscall_linux_test.go

    	if err := os.Chdir(d); err != nil {
    		t.Fatalf("chtmpdir: %v", err)
    	}
    	return func() {
    		if err := os.Chdir(oldwd); err != nil {
    			t.Fatalf("chtmpdir: %v", err)
    		}
    		os.RemoveAll(d)
    	}
    }
    
    func touch(t *testing.T, name string) {
    	f, err := os.Create(name)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := f.Close(); err != nil {
    		t.Fatal(err)
    	}
    }
    
    const (
    	_AT_SYMLINK_NOFOLLOW = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    		}
    
    	}
    	reset("../../bin")
    	reset("../../pkg")
    	reset("../../src")
    	reset(gorootInstallDir)
    }
    
    // touch changes path and returns a function that changes it back.
    // It also sets the time of the file, so that we can see if it is rewritten.
    func touch(t *testing.T, path string) (cleanup func()) {
    	t.Helper()
    	data, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

       * methods ensure that null is never present in the map, it's OK for the
       * comparator to look for it wherever it wants.
       *
       * Note that we do NOT touch the comparator returned by comparator(), which
       * should be identical to the one the user passed in. We touch only the
       * "secret" comparator used by the delegate implementation.
       */
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiRemoteIntegrationTest.groovy

            server.start()
            toolingApi.requireIsolatedUserHome()
            settingsFile.touch()
        }
    
        @Issue('https://github.com/gradle/gradle-private/issues/1537')
        def "downloads distribution with valid user-agent information"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            when:
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then:
            output.count("ON CI") == 1
            configurationCache.assertStateStored()
    
            when: "file is touched but unchanged"
            file("ci").text = "true"
            configurationCacheRun "run"
    
            then: "cache is still valid"
            output.count("ON CI") == 1
            configurationCache.assertStateLoaded()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/query-params-str-validations.md

    !!! note
        Gardez en tête que les outils externes utilisés ne supportent pas forcément tous parfaitement OpenAPI.
    
        Il se peut donc que certains d'entre eux n'utilisent pas toutes les métadonnées que vous avez déclarées pour le moment, bien que dans la plupart des cas, les fonctionnalités manquantes ont prévu d'être implémentées.
    
    Vous pouvez ajouter un `title` :
    
    ```Python hl_lines="10"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top