Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for alphabetically (0.77 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ResolvableConfigurationsReportTaskIntegrationTest.groovy

            doesNotHaveIncubatingLegend()
            doesNotPromptForRerunToFindMoreConfigurations()
        }
    
        def "If multiple resolvable configurations present with attributes, task reports them all, sorted alphabetically"() {
            given:
            buildFile << """
                configurations.create("someConf") {
                    description = "My first custom configuration"
                    assert canBeResolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. .github/CODEOWNERS

    ##
    ## CODEOWNERS style rules:
    ## 1. Prefer team ownership over individual user ownership.
    ## 2. GBT-related team should be listed first.
    ## 3. Try to keep paths alphabetically sorted within visual groups.
    ## 4. List individual owners last.
    ##
    
    # bt-unassigned-maintainers must be the first owner
    # All directories that are not explicitly listed below are considered
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. cmd/signature-v2.go

    	xhttp "github.com/minio/minio/internal/http"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // Whitelist resource list that will be used in query string for signature-V2 calculation.
    //
    // This list should be kept alphabetically sorted, do not hastily edit.
    var resourceList = []string{
    	"acl",
    	"cors",
    	"delete",
    	"encryption",
    	"legal-hold",
    	"lifecycle",
    	"location",
    	"logging",
    	"notification",
    	"partNumber",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. cmd/signature-v4.go

    			if idx > 0 {
    				buf.WriteByte(',')
    			}
    			buf.WriteString(signV4TrimAll(v))
    		}
    		buf.WriteByte('\n')
    	}
    	return buf.String()
    }
    
    // getSignedHeaders generate a string i.e alphabetically sorted, semicolon-separated list of lowercase request header names
    func getSignedHeaders(signedHeaders http.Header) string {
    	var headers []string
    	for k := range signedHeaders {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/upgrade/plan.go

    		}
    	}
    
    	return outputapiv1alpha3.AvailableUpgrade{Description: up.Description, Components: components}
    }
    
    // sortedSliceFromStringStringArrayMap returns a slice of the keys in the map sorted alphabetically
    func sortedSliceFromStringStringArrayMap(strMap map[string][]string) []string {
    	strSlice := []string{}
    	for k := range strMap {
    		strSlice = append(strSlice, k)
    	}
    	sort.Strings(strSlice)
    	return strSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

                        if (tasks.findByName(name)) {
                            project.tasks.create(it)
                        }
                    }
                }
    
                // Source task must be alphabetically before task that is created by dependency
                task aaa { dependsOn("autoCreateFoo") }
                task foo
            """
        }
    
        static String getHelloWorldGroupHeader() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

                        from components.java
                        // 'd' goes first because it only has a file difference
                        // 'a'-'c' have extension differences, and are sorted alphabetically
                        artifacts = ["b3.txt", "c4.txt", "a2.txt", "d1.jar"]
                    }
                }
    
    """)
            when:
            fails 'publish'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. src/log/slog/value.go

    	stringptr *byte // used in Value.any when the Value is a string
    	groupptr  *Attr // used in Value.any when the Value is a []Attr
    )
    
    // Kind is the kind of a [Value].
    type Kind int
    
    // The following list is sorted alphabetically, but it's also important that
    // KindAny is 0 so that a zero Value represents nil.
    
    const (
    	KindAny Kind = iota
    	KindBool
    	KindDuration
    	KindFloat64
    	KindInt64
    	KindString
    	KindTime
    	KindUint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

      }
    
      private static class WithPublicConstants {
        public static final WithPublicConstants FIRST = new WithPublicConstants();
    
        // To test that we pick the first constant alphabetically
        @SuppressWarnings("unused")
        public static final WithPublicConstants SECOND = new WithPublicConstants();
      }
    
      private static class FirstConstantIsNull {
        // To test that null constant is ignored
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    ----
    
    * Each line still represents a single dependency in the `group:artifact:version` notation
    * It then lists all configurations that contain the given dependency
    * Module and configurations are ordered alphabetically, to ease diffs
    * The last line of the file lists all empty configurations, that is configurations known to have no dependencies
    
    which matches the following dependency declaration:
    
    .Dynamic dependency declaration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top