Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 89 for checkIn (0.26 sec)

  1. src/go/types/api_test.go

    	}
    
    	var conf Config
    	fset := token.NewFileSet()
    	pkg := NewPackage("p", "p")
    	var info Info
    	check := NewChecker(&conf, fset, pkg, &info)
    
    	for _, src := range sources {
    		if err := check.Files([]*ast.File{mustParse(fset, src)}); err != nil {
    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_test.go

    		"package p",
    	}
    
    	var conf Config
    	pkg := NewPackage("p", "p")
    	var info Info
    	check := NewChecker(&conf, pkg, &info)
    
    	for _, src := range sources {
    		if err := check.Files([]*syntax.File{mustParse(src)}); err != nil {
    			t.Error(err)
    		}
    	}
    
    	// check InitOrder is [x y]
    	var vars []string
    	for _, init := range info.InitOrder {
    		for _, v := range init.Lhs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                if (logger.isDebugEnabled()) {
                                    // Message below is checked for in the MNG-2199 core IT.
                                    logger.warn("Failed to build parent project for " + project.getId(), e);
                                } else {
                                    // Message below is checked for in the MNG-2199 core IT.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

    import java.util.List;
    import java.util.NoSuchElementException;
    import java.util.PriorityQueue;
    import java.util.Queue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * This class contains static utility methods that operate on or return objects of type {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

    import java.util.List;
    import java.util.NoSuchElementException;
    import java.util.PriorityQueue;
    import java.util.Queue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * This class contains static utility methods that operate on or return objects of type {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// validations is "spec.validations[0].expression"
    	FieldRef string `json:"fieldRef" protobuf:"bytes,2,opt,name=fieldRef"`
    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/load.go

    	// to distinguish between roots and transitive dependencies). Either way,
    	// check the full graph to see if the directory is a non-root dependency.
    	//
    	// If the roots are not consistent with the full module graph, the selected
    	// versions of root modules may differ from what we already checked above.
    	// Re-check those paths too.
    
    	mg, _ := rs.Graph(ctx)
    	var importPath string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			args: config.NodeResourcesFitArgs{
    				IgnoredResources: []string{"example.com/bbb"},
    			},
    			name:                      "skip checking ignored extended resource",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    			pod: newResourceOverheadPod(
    				newResourcePod(framework.Resource{MilliCPU: 1, Memory: 1}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			want: want{
    				filter: perNodeResult{
    					workerNode.Name: {
    						status: framework.NewStatus(framework.UnschedulableAndUnresolvable, `checking structured parameters failed: checking node "worker" and resources of driver "some-driver": evaluate request CEL expression: no such key: no-such-attribute`),
    					},
    				},
    				postfilter: result{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                task check {
                    doFirst {
                        provider.get().increment()
                    }
                }
            """
    
            expect:
            run("check")
            run("check")
    
            where:
            serviceType << [
                ExecOperations,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top