Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,237 for repeats (0.14 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractIncrementalTestIntegrationTest.groovy

        }
    
        def "does not re-run tests when parameter of disabled report changes"() {
            buildFile << """
                test {
                    reports.html {
                        required = true
                    }
                    reports.junitXml {
                        required = false
                        outputPerTestCase = Boolean.parseBoolean(project.property('outputPerTestCase'))
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. pkg/workloadapi/security/authorization.proto

      repeated Match matches = 2;
    }
    
    message Match {
      // Values of specific type are ORed
      // If multiple types are set, they are ANDed
    
      repeated StringMatch namespaces = 1;
      repeated StringMatch not_namespaces = 2;
    
      repeated StringMatch principals = 3;
      repeated StringMatch not_principals = 4;
    
      repeated Address source_ips = 5;
      repeated Address not_source_ips = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/strings/export_test.go

    	if t.priority > 0 {
    		s += "+"
    	} else {
    		s += "-"
    	}
    	s += "\n"
    
    	if t.prefix != "" {
    		s += Repeat(".", depth) + t.prefix
    		s += r.printNode(t.next, depth+len(t.prefix))
    	} else if t.table != nil {
    		for b, m := range r.mapping {
    			if int(m) != r.tableSize && t.table[m] != nil {
    				s += Repeat(".", depth) + string([]byte{byte(b)})
    				s += r.printNode(t.table[m], depth+1)
    			}
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. src/crypto/hmac/hmac.go

    // key is zero padded to the block size of the hash function
    // ipad = 0x36 byte repeated for key length
    // opad = 0x5c byte repeated for key length
    // hmac = H([key ^ opad] H([key ^ ipad] text))
    
    // marshalable is the combination of encoding.BinaryMarshaler and
    // encoding.BinaryUnmarshaler. Their method definitions are repeated here to
    // avoid a dependency on the encoding package.
    type marshalable interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/DependencySpec.groovy

        String strictVersion
        List<String> rejects
        List<ExcludeSpec> exclusions = []
        boolean endorseStrictVersions
        String reason
        Map<String, Object> attributes
        List<CapabilitySpec> requestedCapabilities = []
        ArtifactSelectorSpec artifactSelector
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheKeyIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "help", "--offline"
            then:
            configurationCache.assertStateStored()
    
            // Now repeat invocations in different order to make sure both entries can be reused
            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateLoaded()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/rbac/v1beta1/generated.proto

      // Items is a list of ClusterRoles
      repeated ClusterRole items = 2;
    }
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    message PolicyRule {
      // Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_extra_data_types/test_tutorial001.py

                                "format": "date-time",
                            },
                            "repeat_at": IsDict(
                                {
                                    "title": "Repeat At",
                                    "anyOf": [
                                        {"type": "string", "format": "time"},
                                        {"type": "null"},
                                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py310.py

                                "format": "date-time",
                            },
                            "repeat_at": IsDict(
                                {
                                    "title": "Repeat At",
                                    "anyOf": [
                                        {"type": "string", "format": "time"},
                                        {"type": "null"},
                                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. src/mime/quotedprintable/writer_test.go

    			want: strings.Repeat("a", 74) + "=\r\n=3D",
    		},
    		{
    			in:   strings.Repeat("a", 75) + "=",
    			want: strings.Repeat("a", 75) + "=\r\n=3D",
    		},
    		{
    			in:   strings.Repeat(" ", 73),
    			want: strings.Repeat(" ", 72) + "=20",
    		},
    		{
    			in:   strings.Repeat(" ", 74),
    			want: strings.Repeat(" ", 73) + "=\r\n=20",
    		},
    		{
    			in:   strings.Repeat(" ", 75),
    			want: strings.Repeat(" ", 74) + "=\r\n=20",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 5.1K bytes
    - Viewed (0)
Back to top