Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for Scans (0.13 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    			format = p
    		}
    	}
    
    	return &printfWrapper{
    		obj:    fn,
    		fdecl:  fdecl,
    		format: format,
    		args:   args,
    	}
    }
    
    // findPrintfLike scans the entire package to find printf-like functions.
    func findPrintfLike(pass *analysis.Pass, res *Result) (interface{}, error) {
    	// Gather potential wrappers and call graph between them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            test.setIgnoreFailures(true)
    
            when:
            test.executeTests()
    
            then:
            1 * testExecuterMock.execute(_ as TestExecutionSpec, _ as TestResultProcessor)
        }
    
        def "scans for test classes in the classes dir"() {
            given:
            configureTask()
            test.include("include")
            test.exclude("exclude")
            def classFiles = test.getCandidateClassFiles()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

        private void assertNothingConfigured() {
            def configuredProjects = buildOperations.all(ConfigureProjectBuildOperationType)
            // A synthetic "project configured" operation is fired for each root project for build scans
            assert configuredProjects.every { it.details.projectPath == ':' }
    
            def scripts = buildOperations.all(ApplyScriptPluginBuildOperationType)
            assert scripts.empty
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    		}
    		if p+int(info.size) != i {
    			if p == -1 { // no boundary found
    				return -1
    			}
    			return i // boundary after an illegal UTF-8 encoding
    		}
    	}
    	return i
    }
    
    // decomposeSegment scans the first segment in src into rb. It inserts 0x034f
    // (Grapheme Joiner) when it encounters a sequence of more than 30 non-starters
    // and returns the number of bytes consumed from src or iShortDst or iShortSrc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepository.java

                artifact = false;
                ignoreGradleMetadataRedirection = false;
            }
    
            /**
             * This is used to generate the repository id and for reporting purposes on build scans.
             * Changing this means a change of repository.
             *
             * @return a list of implemented metadata sources, as strings.
             */
            List<String> asList() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 18 21:30:55 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    The `help` task is the perfect candidate to benchmark your migration process.
    In a build that uses only the configuration avoidance API, a link:https://scans.gradle.com/s/o7qmlmmrsfxz4/performance/configuration?openScriptsAndPlugins=WzFd[build scan] shows no tasks created during configuration, and only the tasks executed are created.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultIvyArtifactRepository.java

                artifact = false;
                ignoreGradleMetadataRedirection = false;
            }
    
            /**
             * This is used to generate the repository id and for reporting purposes on build scans.
             * Changing this means a change of repository.
             *
             * @return a list of implemented metadata sources, as strings.
             */
            List<String> asList() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

     . link:https://scans.gradle.com[Create a build scan for the Maven build].
    +
    A build scan will make it easier to visualize what's happening in your existing Maven build.
    For Maven builds, you will be able to see the project structure, what plugins are being used, a timeline of the build steps, and more.
    Keep this handy so you can compare it to the Gradle build scans while converting the project.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_common.go

    		return gvi.deviceMounter.GetDeviceMountPath(gvi.volumeSpec)
    	} else {
    		return "", fmt.Errorf("blockVolumeMapper or deviceMounter required")
    	}
    }
    
    // getVolumesFromPodDir scans through the volumes directories under the given pod directory.
    // It returns a list of pod volume information including pod's uid, volume's plugin name, mount path,
    // and volume spec name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/pod_container_manager_linux.go

    	}
    	parts := strings.Split(basePath, podCgroupNamePrefix)
    	if len(parts) != 2 {
    		return false, types.UID("")
    	}
    	return true, types.UID(parts[1])
    }
    
    // GetAllPodsFromCgroups scans through all the subsystems of pod cgroups
    // Get list of pods whose cgroup still exist on the cgroup mounts
    func (m *podContainerManagerImpl) GetAllPodsFromCgroups() (map[types.UID]CgroupName, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top