Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 397 for plan (0.04 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailureTest.groovy

    2019-10-03T09:33:08.990+0200 [DEBUG] [org.gradle.api.internal.tasks.execution.ExecuteAtMostOnceTaskExecuter] Some more output
    2019-10-03T09:33:08.990+0200 [DEBUG] [org.gradle.execution.plan.DefaultPlanExecutor] Task worker [Thread[main,5,main]] finished, busy: 0.0 secs, idle: 0.021 secs
    \u001B[0K
    \u001B[0K
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/image/gif/writer.go

    		// Set pm to be a palettedized copy of m, including its bounds, which
    		// might not start at (0, 0).
    		//
    		// TODO: Pick a better sub-sample of the Plan 9 palette.
    		pm = image.NewPaletted(b, palette.Plan9[:opts.NumColors])
    		if opts.Quantizer != nil {
    			pm.Palette = opts.Quantizer.Quantize(make(color.Palette, 0, opts.NumColors), m)
    		}
    		opts.Drawer.Draw(pm, b, m, b.Min)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo.go

    }
    
    func (x *xcoffExe) DataStart() (uint64, uint64) {
    	if s := x.f.SectionByType(xcoff.STYP_DATA); s != nil {
    		return s.VirtualAddress, s.Size
    	}
    	return 0, 0
    }
    
    // plan9objExe is the Plan 9 a.out implementation of the exe interface.
    type plan9objExe struct {
    	f *plan9obj.File
    }
    
    func (x *plan9objExe) DataStart() (uint64, uint64) {
    	if s := x.f.Section("data"); s != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/net/net.go

    when the ASR_CONFIG environment variable is non-empty (OpenBSD only),
    when /etc/resolv.conf or /etc/nsswitch.conf specify the use of features that the
    Go resolver does not implement.
    
    On all systems (except Plan 9), when the cgo resolver is being used
    this package applies a concurrent cgo lookup limit to prevent the system
    from running out of system threads. Currently, it is limited to 500 concurrent lookups.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/README

    	HOME=/no-home
    	PATH=<actual PATH>
    	TMPDIR=$WORK/tmp
    	GODEBUG=<actual GODEBUG>
    	devnull=<value of os.DevNull>
    	goversion=<current Go version; for example, 1.12>
    
    On Plan 9, the variables $path and $home are set instead of $PATH and $HOME.
    On Windows, the variables $USERPROFILE and $TMP are set instead of
    $HOME and $TMPDIR.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/runtime/string.go

    }
    
    //go:nosplit
    func findnull(s *byte) int {
    	if s == nil {
    		return 0
    	}
    
    	// Avoid IndexByteString on Plan 9 because it uses SSE instructions
    	// on x86 machines, and those are classified as floating point instructions,
    	// which are illegal in a note handler.
    	if GOOS == "plan9" {
    		p := (*[maxAlloc/2 - 1]byte)(unsafe.Pointer(s))
    		l := 0
    		for p[l] != 0 {
    			l++
    		}
    		return l
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    // In the future, we plan to publish the API for defining new parameter
    // generators. But for now this interface remains part of the internal
    // implementation and is subject to change.
    //
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/syscall/exec_plan9.go

    // for it to finish, communicating the process stats back
    // to any goroutines that may have been waiting on it.
    //
    // Such a dedicated goroutine is needed because on
    // Plan 9, only the parent thread can wait for a child,
    // whereas goroutines tend to jump OS threads (e.g.,
    // between starting a process and running Wait(), the
    // goroutine may have been rescheduled).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

                succeeds 'a', 'd'
                result.assertTasksExecuted(':c', ':b', ':a', ':d')
            }
        }
    
        def "multiple should run after ordering can be ignored for one execution plan"() {
            buildFile << """
                task a() {
                    dependsOn 'b', 'h'
                }
                task b() {
                    dependsOn 'c'
                }
                task c() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  10. src/path/filepath/path.go

    //
    // On Windows, Clean does not modify the volume name other than to replace
    // occurrences of "/" with `\`.
    // For example, Clean("//host/share/../x") returns `\\host\share\x`.
    //
    // See also Rob Pike, “Lexical File Names in Plan 9 or
    // Getting Dot-Dot Right,”
    // https://9p.io/sys/doc/lexnames.html
    func Clean(path string) string {
    	return filepathlite.Clean(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top