Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,753 for Parses (0.11 sec)

  1. src/net/http/cookie.go

    		case "partitioned":
    			c.Partitioned = true
    			continue
    		}
    		c.Unparsed = append(c.Unparsed, parts[i])
    	}
    	return c, nil
    }
    
    // readSetCookies parses all "Set-Cookie" values from
    // the header h and returns the successfully parsed Cookies.
    func readSetCookies(h Header) []*Cookie {
    	cookieCount := len(h["Set-Cookie"])
    	if cookieCount == 0 {
    		return []*Cookie{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. src/go/parser/interface.go

    //
    // If src != nil, ParseFile parses the source from src and the filename is
    // only used when recording position information. The type of the argument
    // for the src parameter must be string, []byte, or [io.Reader].
    // If src == nil, ParseFile parses the file specified by filename.
    //
    // The mode parameter controls the amount of source text parsed and
    // other optional parser functionality. If the [SkipObjectResolution]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

            } while (!buffer.hasAny(",)"));
            return new ComplexExpression(IncludeType.EXPRESSIONS, null, expressions);
        }
    
        /**
         * Parses an expression that ends with the given delimiter. Returns null on failure and consumes input up to the parse failure point.
         */
        @Nullable
        private static Expression readDelimitedExpression(Buffer buffer, char endDelim, IncludeType type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

    import com.google.common.base.Joiner;
    import com.google.common.collect.ImmutableMap;
    import java.util.Deque;
    
    /** Parser for a map of reversed domain names stored as a serialized radix tree. */
    @GwtCompatible
    final class TrieParser {
    
      private static final Joiner DIRECT_JOINER = Joiner.on("");
    
      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue50427.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // The parser no longer parses type parameters for methods.
    // In the past, type checking the code below led to a crash (#50427).
    
    type T interface{ m[ /* ERROR "must have no type parameters" */ P any]() }
    
    func _(t T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 731 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

        IvyXmlModuleDescriptorParser parser = new IvyXmlModuleDescriptorParser(new IvyModuleDescriptorConverter(moduleIdentifierFactory), moduleIdentifierFactory, fileRepository, metadataFactory)
    
        DescriptorParseContext parseContext = Mock()
        MutableIvyModuleResolveMetadata metadata
        boolean hasGradleMetadataRedirectionMarker
    
        def "parses minimal Ivy descriptor"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_iptables_unspecified.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    import "errors"
    
    // ErrNotImplemented is returned when a requested feature is not implemented.
    var ErrNotImplemented = errors.New("not implemented")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/utils.go

    			Name:        &epp.Name,
    			Port:        &epp.Port,
    			Protocol:    &epp.Protocol,
    			AppProtocol: epp.AppProtocol,
    		})
    	}
    	return epsPorts
    }
    
    // getServiceFromDeleteAction parses a Service resource from a delete
    // action.
    func getServiceFromDeleteAction(obj interface{}) *corev1.Service {
    	if service, ok := obj.(*corev1.Service); ok {
    		return service
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. cni/pkg/plugin/sidecar_iptables.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // This is a sample chained plugin that supports multiple CNI versions. It
    // parses prevResult according to the cniVersion
    package plugin
    
    type iptables struct{}
    
    func newIPTables() InterceptRuleMgr {
    	return &iptables{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 810 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	}
    }
    
    // AdditionalHeader parses a single Additional ResourceHeader.
    func (p *Parser) AdditionalHeader() (ResourceHeader, error) {
    	return p.resourceHeader(sectionAdditionals)
    }
    
    // Additional parses a single Additional Resource.
    func (p *Parser) Additional() (Resource, error) {
    	return p.resource(sectionAdditionals)
    }
    
    // AllAdditionals parses all Additional Resources.
    func (p *Parser) AllAdditionals() ([]Resource, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top