Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for keynote (0.12 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    // license that can be found in the LICENSE file.
    
    // Package relnote supports working with release notes.
    //
    // Its main feature is the ability to merge Markdown fragments into a single
    // document. (See [Merge].)
    //
    // This package has minimal imports, so that it can be vendored into the
    // main go repo.
    package relnote
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

            expect(httpStub)
        }
    
        def stubMultipartUpload(String bucketName, String keyName, File file) {
            stubInitiateMultipartUpload(bucketName, keyName)
            stubUploadPart(bucketName, keyName, file)
            stubCompleteMultipartUpload(bucketName, keyName, file)
        }
    
        def stubInitiateMultipartUpload(String bucketName, String keyName) {
            def xml = new StreamingMarkupBuilder().bind {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. src/strings/replace.go

    			// what is currently t.prefix[0] will lead to prefixNode, and
    			// looking up key[0] will lead to keyNode.
    			var prefixNode *trieNode
    			if len(t.prefix) == 1 {
    				prefixNode = t.next
    			} else {
    				prefixNode = &trieNode{
    					prefix: t.prefix[1:],
    					next:   t.next,
    				}
    			}
    			keyNode := new(trieNode)
    			t.table = make([]*trieNode, r.tableSize)
    			t.table[r.mapping[t.prefix[0]]] = prefixNode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

            <surefireVersion>2.19.1</surefireVersion>
            <hamcrestVersion>1.3</hamcrestVersion>
            <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
            <arguments />
            <gpg.keyname>67893CC4</gpg.keyname>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.hamcrest</groupId>
                <artifactId>hamcrest-core</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

        </distributionManagement>
    
        <properties>
            <jdkVersion>1.5</jdkVersion>
            <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>
            <arguments />
            <gpg.keyname>67893CC4</gpg.keyname>
        </properties>
    
        <dependencies>
            <dependency>
                <groupId>org.hamcrest</groupId>
                <artifactId>hamcrest-core</artifactId>
                <version>1.3</version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/file/store.go

    		// Or i + 1 has contents, which means "key:\n  value...", then perform one more DFS search
    		keyNode := nodeContent[i]
    		valueNode := nodeContent[i+1]
    		pathKeyForMap := fmt.Sprintf("%s.%s", curPath, keyNode.Value)
    
    		switch {
    		case valueNode.Kind == yamlv3.ScalarNode:
    			// Can build map because the value node has no content anymore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/go/types/predicates.go

    	return true
    }
    
    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/predicates.go

    	return true
    }
    
    // isTyped reports whether t is typed; i.e., not an untyped
    // constant or boolean.
    // Safe to call from types that are not fully set up.
    func isTyped(t Type) bool {
    	// Alias and named types cannot denote untyped types
    	// so there's no need to call Unalias or under, below.
    	b, _ := t.(*Basic)
    	return b == nil || b.info&IsUntyped == 0
    }
    
    // isUntyped(t) is the same as !isTyped(t).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. cmd/post-policy_test.go

    	}
    
    	// get random bucket name.
    	bucketName := getRandomBucketName()
    
    	// Key specified in Form data
    	keyName := "test/object"
    
    	var opts ObjectOptions
    
    	// The final name of the upload object
    	targetObj := keyName + "/upload.txt"
    
    	// The url of success_action_redirect field
    	redirectURL, err := url.Parse("http://www.google.com?query=value")
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    // decimal integer or independently use a prefix of “0b”, “0” or “0o”,
    // or “0x” (or their upper-case variants) to denote a binary, octal, or
    // hexadecimal integer, respectively. The divisor may not be signed.
    // If a floating-point number is provided, it may be in decimal form or
    // use any of the same prefixes as above but for “0” to denote a non-decimal
    // mantissa. A leading “0” is considered a decimal leading 0; it does not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top