Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 378 for touched (0.13 sec)

  1. src/runtime/sigqueue.go

    	// until all current signal deliveries have completed.
    	for sig.delivering.Load() != 0 {
    		Gosched()
    	}
    
    	// Although WaitUntilIdle seems like the right name for this
    	// function, the state we are looking for is sigReceiving, not
    	// sigIdle.  The sigIdle state is really more like sigProcessing.
    	for sig.state.Load() != sigReceiving {
    		Gosched()
    	}
    }
    
    // Must only be called from a single goroutine at a time.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/bootstrap.min.js.map

    ientX\n      } else if (!this._pointerEvent) {\n        this.touchStartX = event.originalEvent.touches[0].clientX\n      }\n    }\n\n    const move = (event) => {\n      // ensure swiping with one touch and not pinching\n      if (event.originalEvent.touches && event.originalEvent.touches.length > 1) {\n        this.touchDeltaX = 0\n      } else {\n        this.touchDeltaX = event.originalEvent.touches[0].clientX - this.touchStartX\n      }\n    }\n\n    const end = (event) => {\n      if (this._pointerEvent...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  3. test/mallocfin.go

    		c := new(B)
    		runtime.SetFinalizer(c, nofinalB)
    		runtime.SetFinalizer(b, finalB)
    		runtime.SetFinalizer(a, finalA)
    		runtime.SetFinalizer(c, nil)
    	}
    	for i := 0; i < N; i++ {
    		runtime.GC()
    		runtime.Gosched()
    		time.Sleep(1e6)
    		if nfinal >= N*8/10 {
    			break
    		}
    	}
    	if nfinal < N*8/10 {
    		println("not enough finalizing:", nfinal, "/", N)
    		panic("fail")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  4. src/runtime/testdata/testprogcgo/threadprof.go

    	// we cannot make any cgo call here. See https://golang.org/issue/9456.
    	atomic.StoreInt32((*int32)(unsafe.Pointer(&C.spinlock)), 1)
    	for atomic.LoadInt32((*int32)(unsafe.Pointer(&C.spinlock))) == 1 {
    		runtime.Gosched()
    	}
    	println("OK")
    }
    
    func CgoExternalThreadSignal() {
    	if len(os.Args) > 2 && os.Args[2] == "crash" {
    		i := C.start_crashing_thread()
    		if i != 0 {
    			fmt.Println("pthread_create failed:", i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 22:43:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/GitAttributesGenerator.java

                    writer.println("*.bat           text eol=crlf");
                    writer.println();
                    writer.println("# Binary files should be left untouched");
                    writer.println("*.jar           binary");
                    writer.println();
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:54:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/BuildSrcCrossVersionSpec.groovy

                build.forTasks("help").run()
            }
            then:
            noExceptionThrown()
        }
    
        def "buildSrc with settings file can execute standalone"() {
            buildSrc.file("settings.gradle").touch()
            when:
            withConnectionToBuildSrc { connection ->
                def build = connection.newBuild()
                build.forTasks("help").run()
            }
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/templates/layouts/base.html

            <title>ControlZ / {{template "title" .}}</title>
    
            <link rel="shortcut icon" href="/favicons/favicon.ico" >
            <link rel="apple-touch-icon" href="/favicons/apple-touch-icon-180x180.png" sizes="180x180">
            <link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
            <link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    				rt.runner.SetAdditionalFlags(rt.setAdditionalFlags)
    			}
    
    			rt.runner.BindToCommand(cmd)
    
    			// in case of no phases, checks that cmd is untouched
    			if len(rt.runner.Phases) == 0 {
    				if cmd.Long != "" {
    					t.Error("cmd.Long is set while it should be leaved untouched\n")
    				}
    
    				if cmd.Flags().Lookup("skip-phases") != nil {
    					t.Error("cmd has skip-phases flag while it should not\n")
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. tools/go-compile-without-link

    #!/bin/bash
    
    if [[ "${2}" == "-V=full" ]]; then
      "$@"
      exit 0
    fi
    case "$(basename ${1})" in
      link)
        # Output a dummy file
        touch "${3}"
        ;;
      *)
        "$@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 23:27:32 UTC 2023
    - 171 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftDependenciesCppInteroperabilityIntegrationTest.groovy

                version = '1.0'
    
                dependencies {
                    api 'org.gradle.swift:log:latest.integration'
                }
            """
            libraryPath.file("settings.gradle").touch()
            libraryRepo.commit("initial commit")
            libraryRepo.close()
        }
    
        private writeCppLogLibrary() {
            def logPath = file("log")
            def logRepo = GitFileRepository.init(logPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top