Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 343 for found$ (0.12 sec)

  1. configure.py

      print('Found CUDA %s in:' % config['cuda_version'])
      print('    %s' % config['cuda_library_dir'])
      print('    %s' % config['cuda_include_dir'])
    
      print('Found cuDNN %s in:' % config['cudnn_version'])
      print('    %s' % config['cudnn_library_dir'])
      print('    %s' % config['cudnn_include_dir'])
    
      if 'tensorrt_version' in config:
        print('Found TensorRT %s in:' % config['tensorrt_version'])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    			break
    		}
    	}
    
    	// Sanity check. Enable if duplicates show up.
    	if false {
    		found := make(map[[16]byte]struct{})
    		for _, ver := range merged {
    			if _, ok := found[ver.header.VersionID]; ok {
    				panic("found dupe")
    			}
    			found[ver.header.VersionID] = struct{}{}
    		}
    	}
    	return merged
    }
    
    type xlMetaBuf []byte
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			dswp.hasAddedPods = tc.hasAddedPods
    			// Action
    			dswp.findAndAddNewPods()
    
    			// Verify
    			podsInDSW := dswp.desiredStateOfWorld.GetPods()
    			found := false
    			if podsInDSW[types.UniquePodName(pod.UID)] {
    				found = true
    			}
    
    			if found != tc.expectedFound {
    				t.Fatalf(
    					"Pod with uid %v has expectedFound value %v in pods in DSW %v",
    					pod.UID, tc.expectedFound, podsInDSW)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	if err != nil {
    		// If node not found, just ignore it.
    		if apierrors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    
    	// Map node's condition to Taints.
    	var taints []v1.Taint
    	for _, condition := range node.Status.Conditions {
    		if taintMap, found := nodeConditionToTaintKeyStatusMap[condition.Type]; found {
    			if taintKey, found := taintMap[condition.Status]; found {
    				taints = append(taints, v1.Taint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    			}
    		}
    		for want := range expectedHosts[vhost.Name] {
    			found := false
    			for _, got := range vhost.Domains {
    				if got == want {
    					found = true
    				}
    			}
    			if !found {
    				t.Fatalf("expected vhost domain %s in vhost %s, for route %s not found. got domains %v", want, vhost.Name, routeName, vhost.Domains)
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_utils_test.go

    		t.Errorf("Expected my-set-2 found %s", pod)
    	}
    	claim.Name = "long-volume-my-set-20"
    	if pod := getClaimPodName(&set, &claim); pod != "my-set-20" {
    		t.Errorf("Expected my-set-20 found %s", pod)
    	}
    	claim.Name = "volume-2-my-set"
    	if pod := getClaimPodName(&set, &claim); pod != "" {
    		t.Errorf("Expected empty string found %s", pod)
    	}
    	claim.Name = "volume-pod-2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    		// If there are opcode checks associated to this source file/line,
    		// run the checks.
    		if ops, found := fullops[srcFileLine]; found {
    			for i := range ops {
    				if !ops[i].found && ops[i].opcode.FindString(asm) != "" {
    					ops[i].found = true
    				}
    			}
    		}
    	}
    	functionMarkers = append(functionMarkers, len(lines))
    
    	var failed []wantedAsmOpcode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	if denyNotFound {
    		require.ErrorContains(t, err, "no params found for policy binding with `Deny` parameterNotFoundAction")
    	} else {
    		require.NoError(t, err, "Allow not found expects no error when no params found. Policy should have been skipped")
    	}
    	require.Empty(t, getAndResetObservedParams(), "policy should not have been evaluated")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

            when:
            run ':a:checkDebug'
    
            then:
            result.assertTasksExecuted(':b:barJar', ':a:checkDebug')
        }
    
        def "does not select default configuration when no match is found and configurations with attributes"() {
            given:
            createDirs("a", "b")
            file('settings.gradle') << "include 'a', 'b'"
            buildFile << """
                $typeDefs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_test.go

    			}
    
    			// look for matching scope description
    			desc := kind + ":" + strings.Join(scope.Names(), " ")
    			found := false
    			for _, d := range test.scopes {
    				if desc == d {
    					found = true
    					break
    				}
    			}
    			if !found {
    				t.Errorf("package %s: no matching scope found for %s", name, desc)
    			}
    		}
    	}
    }
    
    func TestInitOrderInfo(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top