Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 121 for Initial (0.23 sec)

  1. cmd/xl-storage-format-v2.go

    // If data is not xlv2, it is returned in full.
    func readXLMetaNoData(r io.Reader, size int64) ([]byte, error) {
    	initial := size
    	hasFull := true
    	if initial > metaDataReadDefault {
    		initial = metaDataReadDefault
    		hasFull = false
    	}
    
    	buf := metaDataPoolGet()[:initial]
    	_, err := io.ReadFull(r, buf)
    	if err != nil {
    		return nil, fmt.Errorf("readXLMetaNoData(io.ReadFull): %w", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    			// packages imported by the main module does not change, and the query
    			// result for the module containing each such package also does not change
    			// (it is always relative to the initial build list, before applying
    			// queries). So the only way that the result of an "all" query can change
    			// is if some matching package moves from one module in the build list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertThat(ping.ack).isTrue()
      }
    
      @Test fun peerHttp2ServerLowersInitialWindowSize() {
        val initial = Settings()
        initial[Settings.INITIAL_WINDOW_SIZE] = 1684
        val shouldntImpactConnection = Settings()
        shouldntImpactConnection[Settings.INITIAL_WINDOW_SIZE] = 3368
        peer.sendFrame().settings(initial)
        peer.acceptFrame() // ACK
        peer.sendFrame().settings(shouldntImpactConnection)
        peer.acceptFrame() // ACK 2
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    // Because of the iptables and ipvs logic, it is assumed that there is only a single Proxier active on a machine.
    // An error will be returned if it fails to update or acquire the initial lock.
    // Once a proxier is created, it will keep iptables and ipvs rules up to date in the background and
    // will not terminate if a particular iptables or ipvs call fails.
    func NewProxier(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    			startState, blockChanged := state.mergePredecessors(b, blockLocs, nil, false)
    			locs.lastCheckedTime = counterTime
    			counterTime++
    			if state.loggingLevel > 1 {
    				state.logf("Processing %v, block changed %v, initial state:\n%v", b, blockChanged, state.stateString(state.currentState))
    			}
    
    			if blockChanged {
    				// If the start did not change, then the old endState is good
    				converged = false
    				changed := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/crypto/tls/conn.go

    	Msg string
    	// RecordHeader contains the five bytes of TLS record header that
    	// triggered the error.
    	RecordHeader [5]byte
    	// Conn provides the underlying net.Conn in the case that a client
    	// sent an initial handshake that didn't look like TLS.
    	// It is nil if there's already been a handshake or a TLS alert has
    	// been written to the connection.
    	Conn net.Conn
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [source,kotlin]
    ----
    val myNewProperty by extra("initial value")  // <1>
    val myOtherNewProperty by extra { "calculated initial value" }  // <2>
    
    val myProperty: String by extra  // <3>
    val myNullableProperty: String? by extra  // <4>
    ----
    <1> Creates a new extra property called `myNewProperty` in the current context (the project in this case) and initializes it with the value `"initial value"`, which also determines the property's _type_
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf.go

    		})
    
    		d.newrefattr(die, dwarf.DW_AT_type, d.defptrto(dwhs))
    	}
    }
    
    // createUnitLength creates the initial length field with value v and update
    // offset of unit_length if needed.
    func (d *dwctxt) createUnitLength(su *loader.SymbolBuilder, v uint64) {
    	if isDwarf64(d.linkctxt) {
    		su.AddUint32(d.arch, 0xFFFFFFFF)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            property.setFromAnyValue(provider)
    
            then:
            property.get() == ['k1': 'v1']
            property.get() == ['k2': 'v2']
        }
    
        def "queries initial value for every call to get()"() {
            given:
            def initialValue = ['k1': 'v1']
    
            when:
            property.set(initialValue)
            then:
            assertValueIs(['k1': 'v1'])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    		t.Fatal(err)
    	}
    	if lastReq == nil {
    		t.Fatal("didn't see redirect")
    	}
    	if lastReq.Cancel != cancel {
    		t.Errorf("expected lastReq to have the cancel channel set on the initial req")
    	}
    
    	checkErr = errors.New("no redirects allowed")
    	res, err = c.Get(ts.URL)
    	if urlError, ok := err.(*url.Error); !ok || urlError.Err != checkErr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top