Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 115 for consuming (0.88 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	panic(&in.parseErrors)
    }
    
    // eof reports whether the input has reached end of file.
    func (in *input) eof() bool {
    	return len(in.remaining) == 0
    }
    
    // peekRune returns the next rune in the input without consuming it.
    func (in *input) peekRune() int {
    	if len(in.remaining) == 0 {
    		return 0
    	}
    	r, _ := utf8.DecodeRune(in.remaining)
    	return int(r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/main/resources/header.html

                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" href="#modeling-features" aria-expanded="false" aria-controls="modeling-features">Producing and Consuming Variants of Libraries</a>
                        <ul id="modeling-features">
                            <li><a href="../userguide/component_capabilities.html">Declaring Capabilities of a Library</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  3. src/go/scanner/scanner.go

    		return len(x) - 1
    	}
    
    	return -1
    }
    
    // scanEscape parses an escape sequence where rune is the accepted
    // escaped quote. In case of a syntax error, it stops at the offending
    // character (without consuming it) and returns false. Otherwise
    // it returns true.
    func (s *Scanner) scanEscape(quote rune) bool {
    	offs := s.offset
    
    	var n int
    	var base, max uint32
    	switch s.ch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/transform/transform.go

    func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	return 0, len(src), nil
    }
    
    var (
    	// Discard is a Transformer for which all Transform calls succeed
    	// by consuming all bytes and writing nothing.
    	Discard Transformer = discard{}
    
    	// Nop is a SpanningTransformer that copies src to dst.
    	Nop SpanningTransformer = nop{}
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy.go

    // Every time envoy makes a fresh connection to the agent, we reestablish a new connection to the upstream xds
    // This ensures that a new connection between istiod and agent doesn't end up consuming pending messages from envoy
    // as the new connection may not go to the same istiod. Vice versa case also applies.
    func (p *XdsProxy) StreamAggregatedResources(downstream DiscoveryStream) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        [Okio](https://github.com/square/okio), an I/O library that makes it easier
        to access, store and process data. Using this library internally makes OkHttp
        faster while consuming less memory. You can write a `RequestBody` as an Okio
        `BufferedSink` and a `ResponseBody` as an Okio `BufferedSource`. Standard
        `InputStream` and `OutputStream` access is also available.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. cmd/metacache-set.go

    			default:
    				internalLogIf(ctx, err)
    			}
    			if retries >= maxTries {
    				return err
    			}
    			retries++
    			time.Sleep(retryDelay)
    		}
    		return nil
    	})
    
    	// Blocks while consuming entries or an error occurs.
    	err = bw.Close()
    	if err != nil {
    		mc.setErr(err.Error())
    	}
    	metaMu.Lock()
    	defer metaMu.Unlock()
    	if mc.meta.error != "" {
    		return err
    	}
    	// Save success
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    [[sec:substitution_with_attributes]]
    ==== Substituting a dependency with attributes
    
    Let's imagine that you want to substitute a platform dependency with a regular dependency.
    This means that the library you are consuming declared something like this:
    
    .An incorrect dependency on a platform
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  9. src/html/template/escape.go

    //
    // will end in context{stateURL, delimSpaceOrTagEnd, ...}.
    // There are two transitions that happen when the 'x' is seen:
    // (1) Transition from a before-value state to a start-of-value state without
    //
    //	consuming any character.
    //
    // (2) Consume 'x' and transition past the first value character.
    // In this case, nudging produces the context after (1) happens.
    func nudge(c context) context {
    	switch c.state {
    	case stateTag:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    The component metadata rules API allows you to <<component_metadata_rules.adoc#sec:component_metadata_rules_details,access Ivy configurations>> and create variants based on them.
    If you know that all the Ivy modules your are consuming have been published with Gradle without further customizations of the `ivy.xml` file, you can add the following rule to your build:
    
    .Deriving compile and runtime variants for Ivy metadata
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top