Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 422 for gretty (0.18 sec)

  1. okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt

     * MockWebServer. In cases where logic is particularly tricky, we use unit tests. This class makes
     * it easy to get sample values to use in such tests.
     *
     * This class is pretty fast and loose with default values: it attempts to provide values that are
     * well-formed, but doesn't guarantee values are internally consistent. Callers must take care to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please use our bug report template to report problems with something that has never worked.
            Regressions reports are greatly appreciated during our RC phase and before a final release.
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/NormalizingCopyActionDecorator.java

            List<FileCopyDetailsInternal> detailsForPath = pendingDirs.removeAll(path);
    
            FileCopyDetailsInternal dir;
            if (detailsForPath.isEmpty()) {
                // TODO - this is pretty nasty, look at avoiding using a time bomb stub here
                dir = new StubbedFileCopyDetails(path, includeEmptyDirs, chmod);
            } else {
                dir = detailsForPath.get(0);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass.h

    // the later clustering passes.  A major reason to do this is to prevent the
    // clustering from losing critical parallelism in the Tensorflow graph, which
    // can incur great performance degradation.
    //
    // This pass must be run before MarkForCompilationPass, as it stores the
    // scoping information that MarkForCompilationPass will need to respect for
    // clustering decision.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 22 03:15:13 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ComponentAttributesDynamicVersionIntegrationTest.groovy

                    // by dependency-level attributes. This should really belong to a different test
                    // but since integration tests are pretty slow we do both in one go, knowing that
                    // configuration-level already has its own test
                    conf.attributes.attribute(quality, 'boo')
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    // a NegotiatedSerializer.
    type ClientNegotiator interface {
    	// Encoder returns the appropriate encoder for the provided contentType (e.g. application/json)
    	// and any optional mediaType parameters (e.g. pretty=1), or an error. If no serializer is found
    	// a NegotiateError will be returned. The current client implementations consider params to be
    	// optional modifiers to the contentType and will ignore unrecognized parameters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

          <organization>ASF</organization>
          <roles>
            <role>PMC Chair</role>
          </roles>
          <timezone>-5</timezone>
        </developer>
        <developer>
          <id>brett</id>
          <name>Brett Porter</name>
          <email>brett@apache.org</email>
          <organization>ASF</organization>
          <roles>
            <role>PMC Member</role>
          </roles>
          <timezone>+10</timezone>
        </developer>
        <developer>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 9.8K bytes
    - Viewed (0)
  8. architecture/networking/pilot.md

        dfc("Default Revision Controller")
    ```
    
    As you can see, the landscape of controllers is pretty extensive at this point.
    
    [Service Discovery](#ServiceDiscovery) and [Config Store](#ConfigStore) were already discussed above, so do not need more explanation here.
    
    #### Mesh Config
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. pkg/api/v1/endpoints/util_test.go

    		},
    	}
    
    	for _, tc := range testCases {
    		result := RepackSubsets(tc.given)
    		if !reflect.DeepEqual(result, SortSubsets(tc.expect)) {
    			t.Errorf("case %q: expected %s, got %s", tc.name, dump.Pretty(SortSubsets(tc.expect)), dump.Pretty(result))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/tokens_controller_test.go

    					break
    				}
    
    				expectedAction := tc.ExpectedActions[i]
    				if !reflect.DeepEqual(expectedAction, action) {
    					t.Errorf("%s:\nExpected:\n%s\ngot:\n%s", k, dump.Pretty(expectedAction), dump.Pretty(action))
    					continue
    				}
    			}
    
    			if len(tc.ExpectedActions) > len(actions) {
    				t.Errorf("%s: %d additional expected actions", k, len(tc.ExpectedActions)-len(actions))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
Back to top