Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,003 for stops (0.05 sec)

  1. src/text/template/exec.go

    // ExecuteTemplate applies the template associated with t that has the given name
    // to the specified data object and writes the output to wr.
    // If an error occurs executing the template or writing its output,
    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    		}
    	}
    	return unquotedValue{}
    }
    
    // indirect walks down v allocating pointers as needed,
    // until it gets to a non-pointer.
    // If it encounters an Unmarshaler, indirect stops and returns that.
    // If decodingNull is true, indirect stops at the first settable pointer so it
    // can be set to nil.
    func indirect(v reflect.Value, decodingNull bool) (Unmarshaler, encoding.TextUnmarshaler, reflect.Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  3. src/runtime/time.go

    			})
    			t.lock()
    		}
    	}
    }
    
    // stop stops the timer t. It may be on some other P, so we can't
    // actually remove it from the timers heap. We can only mark it as stopped.
    // It will be removed in due course by the P whose heap it is on.
    // Reports whether the timer was stopped before it was run.
    func (t *timer) stop() bool {
    	async := debug.asynctimerchan.Load() != 0
    	if !async && t.isChan {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. pkg/controller/resourcequota/resource_quota_controller.go

    			added.Insert(fmt.Sprintf("%+v", newResource))
    		}
    	}
    	return fmt.Sprintf("added: %v, removed: %v", added.List(), removed.List())
    }
    
    // waitForStopOrTimeout returns a stop channel that closes when the provided stop channel closes or when the specified timeout is reached
    func waitForStopOrTimeout(stopCh <-chan struct{}, timeout time.Duration) <-chan struct{} {
    	stopChWithTimeout := make(chan struct{})
    	go func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. src/cmd/cover/cover_test.go

    	// we don't generate tons of output if there's an inserted or deleted line.
    	for i, goldenLine := range goldenLines {
    		if i >= len(outLines) {
    			t.Fatalf("output shorter than golden; stops before line %d: %s\n", i+1, goldenLine)
    		}
    		// Convert all white space to simple spaces, for easy comparison.
    		goldenLine = strings.Join(strings.Fields(goldenLine), " ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. src/go/types/api.go

    	// Secondary errors (for instance, to enumerate all types
    	// involved in an invalid recursive type declaration) have
    	// error strings that start with a '\t' character.
    	// If Error == nil, type-checking stops with the first
    	// error found.
    	Error func(err error)
    
    	// An importer is used to import packages referred to from
    	// import declarations.
    	// If the installed importer implements ImporterFrom, the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. src/internal/xcoff/file.go

    func (f *File) SectionByType(typ uint32) *Section {
    	for _, s := range f.Sections {
    		if s.Type == typ {
    			return s
    		}
    	}
    	return nil
    }
    
    // cstring converts ASCII byte sequence b to string.
    // It stops once it finds 0 or reaches end of b.
    func cstring(b []byte) string {
    	var i int
    	for i = 0; i < len(b) && b[i] != 0; i++ {
    	}
    	return string(b[:i])
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/go/build/deps_test.go

    	NONE < runtime/race/internal/amd64v3;
    	CGO, runtime/race/internal/amd64v1, runtime/race/internal/amd64v3 < runtime/race;
    
    	# Bulk of the standard library must not use cgo.
    	# The prohibition stops at net and os/user.
    	C !< fmt, go/types, CRYPTO-MATH, log/slog;
    
    	CGO, OS
    	< plugin;
    
    	CGO, FMT
    	< os/user
    	< archive/tar;
    
    	sync
    	< internal/singleflight;
    
    	os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    When system memory is low, Gradle will stop worker daemons to minimize memory consumption.
    
    NOTE: A step-by-step description of converting a normal task action to use the worker API can be found in the section on <<worker_api.adoc#tasks_parallel_worker,developing parallel tasks>>.
    
    == Cancellation and timeouts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    --
    Instead of thinking in terms of artifacts, you should embrace the variant aware model of Gradle.
    It is expected that a single module may need multiple artifacts.
    However this rarely stops there, if the additional artifacts represent an <<feature_variants.adoc#feature_variants,optional feature>>, they might also have different dependencies and more.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
Back to top