Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 613 for stops (0.12 sec)

  1. src/runtime/lockrank_on.go

    		systemstack(func() {
    			print("world stop count=", stopped, "\n")
    			throw("released non-stopped world stop")
    		})
    	}
    }
    
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    func checkWorldStopped() bool {
    	stopped := worldIsStopped.Load()
    	if stopped > 1 {
    		systemstack(func() {
    			print("inconsistent world stop count=", stopped, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    			s.timer.sleep(int64(debug.traceadvanceperiod))
    
    			// Try to advance the trace.
    			traceAdvance(false)
    		}
    		s.done <- struct{}{}
    	}()
    }
    
    // stop stops a traceAdvancer and blocks until it exits.
    func (s *traceAdvancerState) stop() {
    	s.timer.wake()
    	<-s.done
    	close(s.done)
    	s.timer.close()
    }
    
    // traceAdvancePeriod is the approximate period between
    // new generations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    For that purpose, the runtime walks the hierarchy of the directory tree up to the root directory.
    The algorithm stops searching as soon as it finds the settings file.
    
    Always add a `settings.gradle` to the root directory of your build to avoid the initial performance impact.
    The file can either be empty or define the desired name of the project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. internal/event/target/elasticsearch.go

    }
    
    // Close - does nothing and available for interface compatibility.
    func (target *ElasticsearchTarget) Close() error {
    	close(target.quitCh)
    	if target.client != nil {
    		// Stops the background processes that the client is running.
    		target.client.stop()
    	}
    	return nil
    }
    
    func (target *ElasticsearchTarget) checkAndInitClient(ctx context.Context) error {
    	if target.client != nil {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. src/io/io.go

    				break
    			}
    		}
    		if er != nil {
    			if er != EOF {
    				err = er
    			}
    			break
    		}
    	}
    	return written, err
    }
    
    // LimitReader returns a Reader that reads from r
    // but stops with EOF after n bytes.
    // The underlying implementation is a *LimitedReader.
    func LimitReader(r Reader, n int64) Reader { return &LimitedReader{r, n} }
    
    // A LimitedReader reads from R but limits the amount of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

    :a
    \\--- :c
         \\--- :b
              \\--- :a (*)
    
    (*) - details omitted (listed previously)
    """)
        }
    
        def "stops returning tasks on first task execution failure"() {
            def failures = []
            RuntimeException exception = new RuntimeException("failure")
    
            when:
            Task a = task([failure: exception], "a")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

      # to work in an offline environment:
      # https://github.com/coredns/coredns/issues/2494#issuecomment-457215452
      # CoreDNS should handle those domains and answer with NXDOMAIN instead of SERVFAIL
      # otherwise pods stops trying to resolve the domain.
      if [ "${IP_FAMILY}" = "ipv6" ] || [ "${IP_FAMILY}" = "dual" ]; then
        # Get the current config
        original_coredns=$(kubectl get -oyaml -n=kube-system configmap/coredns)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/encoding/xml/read_test.go

    http://codereview.appspot.com/116075/diff/1/2
    
    The fundamental problem was that the tab code was
    not being told what column the text began in, so it
    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    In the process of fixing this, I cleaned up the arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        val e = InterruptedIOException("timeout")
        if (cause != null) e.initCause(cause)
        @Suppress("UNCHECKED_CAST") // E is either IOException or IOException?
        return e as E
      }
    
      /**
       * Stops applying the timeout before the call is entirely complete. This is used for WebSockets
       * and duplex calls where the timeout only applies to the initial setup.
       */
      fun timeoutEarlyExit() {
        check(!timeoutEarlyExit)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/generate/generate.go

    	for i, word := range words {
    		words[i] = os.Expand(word, g.expandVar)
    	}
    	return words
    }
    
    var stop = fmt.Errorf("error in generation")
    
    // errorf logs an error message prefixed with the file and line number.
    // It then exits the program (with exit status 1) because generation stops
    // at the first error.
    func (g *Generator) errorf(format string, args ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top