Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for presenter (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        module("org:d:1.0") {
                            edge("org:e:latest.release", "org:e:10")
                        }
                    }
                }
            }
        }
    
        def "presence of evicted and orphan node for a module do not fail selection"() {
            given:
            mavenRepo.module("org", "a", "1.0").dependsOn("org", "b", "1.0").publish()
            mavenRepo.module("org", "b", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/math/big/int_test.go

    		t.Errorf("GCD(%s, %s, %s, %s): got x = %s, want %s", x, y, a, b, X, x)
    	}
    	if y != nil && Y.Cmp(y) != 0 {
    		t.Errorf("GCD(%s, %s, %s, %s): got y = %s, want %s", x, y, a, b, Y, y)
    	}
    
    	// check results in presence of aliasing (issue #11284)
    	a2 := new(Int).Set(a)
    	b2 := new(Int).Set(b)
    	a2.GCD(X, Y, a2, b2) // result is same as 1st argument
    	if a2.Cmp(d) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    			"istio-system": envoyFilters,
    			"test-ns":      envoyFilters,
    		},
    	}
    
    	if !push.HasEnvoyFilters("ef1", "test-ns") {
    		t.Errorf("Check presence of EnvoyFilter ef1 at test-ns got false, want true")
    	}
    	if push.HasEnvoyFilters("ef3", "test-ns") {
    		t.Errorf("Check presence of EnvoyFilter ef3 at test-ns got true, want false")
    	}
    
    	cases := []struct {
    		name                    string
    		proxy                   *Proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

             * pending, so its `state` field hasn't been nulled out yet.
             *
             * OK, it's technically possible for this to fail in the presence of unsafe publishing, as
             * discussed in the comments in TimeoutFuture. TODO(cpovirk): Maybe check for null before
             * calling recordOutputCancellation?
             */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // UpdateOptions may be provided when updating an API object.
    // All fields in UpdateOptions should also be present in PatchOptions.
    type UpdateOptions struct {
    	TypeMeta `json:",inline"`
    
    	// When present, indicates that modifications should not be
    	// persisted. An invalid or unrecognized dryRun directive will
    	// result in an error response and no further processing of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

             "xffNumTrustedHops": "4"
     }
    }`),
    			},
    		},
    		// Ensure we can mix v3 patches with v2 internal
    		// Note that alwaysSetRequestIdInResponse is only present in v3 protos. It will be silently ignored
    		// as we are working in v2 protos internally
    		{
    			ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    		// This handles attempts to start large numbers of pods that would
    		// likely all fail with the same error. For example a project with a
    		// low quota that attempts to create a large number of pods will be
    		// prevented from spamming the API service with the pod create requests
    		// after one of its pods fails.  Conveniently, this also prevents the
    		// event spam that those failures would generate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    // only its end coordinate.
    type pendingEntry struct {
    	present                bool
    	startBlock, startValue ID
    	// The location of each piece of the variable, in the same order as the
    	// SlotIDs in varParts.
    	pieces []VarLoc
    }
    
    func (e *pendingEntry) clear() {
    	e.present = false
    	e.startBlock = 0
    	e.startValue = 0
    	for i := range e.pieces {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_utils_test.go

    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    					UID:        "123",
    					Controller: ptr.To(true),
    				},
    			},
    		},
    		{
    			name:         "not present",
    			originalRefs: []metav1.OwnerReference{},
    			expectedRefs: []metav1.OwnerReference{
    				{
    					APIVersion: "apps/v1",
    					Kind:       "StatefulSet",
    					Name:       "sts",
    					UID:        "123",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // TPUPartitionedOutputV2 ops. This test ensures that they are erased
    // and not considered within the clustered computation. It also ensures that
    // the expected interleaving pattern is present in the output.
    
    func.func @partitioned_outputs(%arg0: tensor<?xi32>) -> (tensor<?xi32>, tensor<?xi32>, tensor<?xi32>, tensor<?xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top