Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for touches (0.13 sec)

  1. src/main/webapp/js/admin/plugins/timepicker/bootstrap-timepicker.min.js

    ,time:{value:this.getTime(),hours:this.hour,minutes:this.minute,seconds:this.second,meridian:this.meridian}}),"modal"===this.template&&this.$widget.modal?this.$widget.modal("hide"):this.$widget.removeClass("open"),a(c).off("mousedown.timepicker, touchend.timepicker",this.handleDocumentClick),this.isOpen=!1,this.$widget.detach())},highlightUnit:function(){this.position=this.getCursorPosition(),this.position>=0&&this.position<=2?this.highlightHour():this.position>=3&&this.position<=5?this.highligh...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 18.2K bytes
    - Viewed (0)
  2. src/image/draw/draw_test.go

    	// is only 1x2. The Draw call should affect dst's pixels at (1, 10) and (2,
    	// 10) but the pixel at (0, 10) should be untouched.
    	//
    	// The src image is entirely transparent (and the Draw operator is Src) so
    	// the two touched pixels should be set to transparent colors.
    	//
    	// In general, Go's color.Color type (and specifically the Color.RGBA
    	// method) works in premultiplied alpha, where there's no difference
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_main_function.mlir

        %0 = "tf.Mul"(%arg0, %arg1) : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        func.return %0 : tensor<1xf32>
      }
    // `@main_0` remains touched.
    // CHECK: func.func private @main_0
    // CHECK-SAME: z:0
    
    // `@main` should be renamed to `@main_1` instead of `@main_0` to avoid
    // conflict.
    // CHECK: func.func private @main_1
    // CHECK-SAME: x:0
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/net/http/cgi/host.go

    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    	// Copy headers to rw's headers, after we've decided not to
    	// go into handleInternalRedirect, which won't want its rw
    	// headers to have been touched.
    	for k, vv := range headers {
    		for _, v := range vv {
    			rw.Header().Add(k, v)
    		}
    	}
    
    	rw.WriteHeader(statusCode)
    
    	_, err = io.Copy(rw, linebody)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top