Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 88 for flushed (0.3 sec)

  1. src/cmd/compile/internal/ssagen/pgen.go

    		return
    	}
    
    	pp.Flush() // assemble, fill in boilerplate, etc.
    
    	// If we're compiling the package init function, search for any
    	// relocations that target global map init outline functions and
    	// turn them into weak relocs.
    	if fn.IsPackageInit() && base.Debug.WrapGlobalMapCtl != 1 {
    		weakenGlobalMapInitRelocs(fn)
    	}
    
    	// fieldtrack must be called after pp.Flush. See issue 20014.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_386.go

    	ICANON   = 0x2
    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    	IEXTEN   = 0x8000
    	TCGETS   = 0x5401
    	TCSETS   = 0x5402
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. internal/s3select/message.go

    	errCh  chan []byte
    	doneCh chan struct{}
    }
    
    func (writer *messageWriter) write(data []byte) bool {
    	if _, err := writer.writer.Write(data); err != nil {
    		return false
    	}
    
    	writer.writer.(http.Flusher).Flush()
    	return true
    }
    
    func (writer *messageWriter) start() {
    	keepAliveTicker := time.NewTicker(1 * time.Second)
    	var progressTicker *time.Ticker
    	var progressTickerC <-chan time.Time
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 30 15:26:43 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server.go

    		return
    	}
    
    	if _, ok := response.ResponseWriter.(http.Flusher); !ok {
    		response.WriteError(http.StatusInternalServerError, fmt.Errorf("unable to convert %v into http.Flusher, cannot show logs", reflect.TypeOf(response)))
    		return
    	}
    	fw := flushwriter.Wrap(response.ResponseWriter)
    	response.Header().Set("Transfer-Encoding", "chunked")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_amd64.go

    	ICANON   = 0x2
    	XCASE    = 0x4
    	ECHO     = 0x8
    	ECHOE    = 0x10
    	ECHOK    = 0x20
    	ECHONL   = 0x40
    	NOFLSH   = 0x80
    	TOSTOP   = 0x100
    	ECHOCTL  = 0x200
    	ECHOPRT  = 0x400
    	ECHOKE   = 0x800
    	FLUSHO   = 0x1000
    	PENDIN   = 0x4000
    	IEXTEN   = 0x8000
    	TCGETS   = 0x5401
    	TCSETS   = 0x5402
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "org.mK",
              "us",
              "co.uk.", // Trailing dot
              "co\uFF61uk", // Alternate dot character
              "\u7f51\u7edc.Cn", // "网络.Cn"
              "j\u00f8rpeland.no", // "jorpeland.no" (first o slashed)
              "xn--jrpeland-54a.no"); // IDNA (punycode) encoding of above
    
      private static final ImmutableSet<String> PS_NOT_RS =
          ImmutableSet.of("blogspot.com", "blogspot.co.uk", "uk.com");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	*pauses = p[:n+n+3]
    }
    
    // flushmcache flushes the mcache of allp[i].
    //
    // The world must be stopped.
    //
    //go:nowritebarrier
    func flushmcache(i int) {
    	assertWorldStopped()
    
    	p := allp[i]
    	c := p.mcache
    	if c == nil {
    		return
    	}
    	c.releaseAll()
    	stackcache_clear(c)
    }
    
    // flushallmcaches flushes the mcaches of all Ps.
    //
    // The world must be stopped.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck.go

    		morestack: ctxt.loader.Lookup("runtime.morestack", 0),
    		height:    make(map[loader.Sym]int16, len(ctxt.Textp)),
    	}
    	// Compute stack effect of a CALL operation. 0 on LR machines.
    	// 1 register pushed on non-LR machines.
    	if !ctxt.Arch.HasLR {
    		sc.callSize = ctxt.Arch.RegSize
    	}
    
    	if graph {
    		// We're going to record the call graph.
    		sc.graph = make(map[loader.Sym][]stackCheckEdge)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset_test.go

    		},
    	}
    	runner := New(fexec)
    	// Success.
    	err := runner.FlushSet("FOOBAR")
    	if err != nil {
    		t.Errorf("expected success, got %v", err)
    	}
    	if fcmd.CombinedOutputCalls != 1 {
    		t.Errorf("expected 1 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls)
    	}
    	if !sets.NewString(fcmd.CombinedOutputLog[0]...).HasAll("ipset", "flush", "FOOBAR") {
    		t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. docs/bigdata/README.md

    ```
    cat ${HADOOP_CONF_DIR}/core-site.xml | kv-pairify | grep "mapred"
    
    mapred.maxthreads.generate.mapoutput=2 # Num threads to write map outputs
    mapred.maxthreads.partition.closer=0 # Asynchronous map flushers
    mapreduce.fileoutputcommitter.algorithm.version=2 # Use the latest committer version
    mapreduce.job.reduce.slowstart.completedmaps=0.99 # 99% map, then reduce
    mapreduce.reduce.shuffle.input.buffer.percent=0.9 # Min % buffer in RAM
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top