Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for inspectors (0.3 sec)

  1. buildscripts/rewrite-old-new.sh

    		echo "server1 log:"
    		cat "${WORK_DIR}/server1.log"
    		echo "FAILED"
    		mkdir -p inspects
    		(
    			cd inspects
    			"${WORK_DIR}/mc" admin inspect minio/healing-rewrite-bucket/verify-build.sh/**
    		)
    
    		"${WORK_DIR}/mc" mb play/inspects
    		"${WORK_DIR}/mc" mirror inspects play/inspects
    
    		purge "$WORK_DIR"
    		exit 1
    	fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    	case *types.Basic:
    		return t.Name()
    	case hasTypeName:
    		return t.Obj().Name()
    	}
    	return ""
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    	nodeFilter := []ast.Node{
    		(*ast.CallExpr)(nil),
    	}
    	inspect.Preorder(nodeFilter, func(n ast.Node) {
    		call := n.(*ast.CallExpr)
    
    		if len(call.Args) != 1 {
    			return
    		}
    		arg := call.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/go/ast/walk.go

    	case *Package:
    		for _, f := range n.Files {
    			Walk(v, f)
    		}
    
    	default:
    		panic(fmt.Sprintf("ast.Walk: unexpected node type %T", n))
    	}
    
    	v.Visit(nil)
    }
    
    type inspector func(Node) bool
    
    func (f inspector) Visit(node Node) Visitor {
    	if f(node) {
    		return f
    	}
    	return nil
    }
    
    // Inspect traverses an AST in depth-first order: It starts by calling
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. .gitignore

    coverage.txt
    .vscode/
    *.tar.bz2
    parts/
    prime/
    stage/
    .sia_temp/
    config.json
    node_modules/
    mc.*
    s3-check-md5*
    xl-meta*
    healing-*
    inspect*.zip
    200M*
    hash-set
    minio.RELEASE*
    mc
    nancy
    inspects/*
    .bin/
    *.gz
    docs/debugging/s3-verify/s3-verify
    docs/debugging/xl-meta/xl-meta
    docs/debugging/s3-check-md5/s3-check-md5
    docs/debugging/hash-set/hash-set
    docs/debugging/healing-bin/healing-bin
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

            FileSystem fileSystem,
            CrossBuildFileHashCacheWrapper crossBuildCache,
            BuildSessionScopeFileTimeStampInspector inspector,
            FileHasherStatistics.Collector statisticsCollector
        ) {
            return new DefaultChecksumService(stringInterner, crossBuildCache.delegate, fileSystem, inspector, statisticsCollector);
        }
    
        // Wraps CrossBuildFileHashCache so that it doesn't conflict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * excessive class loading on startup.
     *
     * The [KaCachedService] annotation itself is currently not enforced by any checkers or inspections, but it serves as an anchor for
     * documentation and improves discoverability of cached services.
     */
    @Target(allowedTargets = [AnnotationTarget.PROPERTY, AnnotationTarget.FIELD])
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtImportOptimizer.kt

    }
    
    public typealias KtImportOptimizer = KaImportOptimizer
    
    public interface KaImportOptimizerMixIn : KaSessionMixIn {
    
        /**
         * Takes [file] and inspects its imports and their usages,
         * so they can be optimized based on the resulting [KaImportOptimizerResult].
         *
         * Does **not** change the file.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. testing/integ-test/build.gradle.kts

        integTestImplementation(testFixtures(project(":platform-native")))
        integTestImplementation(libs.jgit)
        integTestImplementation(libs.javaParser) {
            because("The Groovy compiler inspects the dependencies at compile time")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/build.gradle.kts

        integTestImplementation(testFixtures(project(":model-core")))
        integTestImplementation(libs.commonsLang)
        integTestImplementation(libs.javaParser) {
            because("The Groovy docs inspects the dependencies at compile time")
        }
        integTestImplementation(libs.nativePlatform) {
            because("Required for SystemInfo")
        }
    
        testRuntimeOnly(project(":distributions-core")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/build.gradle.kts

        implementation(libs.joda)
        implementation(libs.joptSimple)
        implementation(libs.mina)
        implementation(libs.slf4jApi)
    
        compileOnly(libs.javaParser) {
            because("The Groovy compiler inspects the dependencies at compile time")
        }
    
        runtimeOnly(libs.jclToSlf4j)
        runtimeOnly(libs.jetty)
        runtimeOnly(libs.mySqlConnector)
    
        integTestDistributionRuntimeOnly(project(":distributions-core"))
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top