Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 960 for Unused2 (0.32 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/InitScriptApi.kt

        /**
         * Configures the classpath of the init script.
         */
        @Suppress("unused")
        open fun initscript(block: ScriptHandlerScope.() -> Unit): Unit =
            internalError()
    
        /**
         * Logger for init scripts. You can use this in your init script to write log messages.
         */
        @Suppress("unused")
        val logger: Logger by unsafeLazy { Logging.getLogger(Gradle::class.java) }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_modinfo.txt

    [short] skip
    
    # Build a binary that accesses its debug info by reading the binary directly
    # (rather than through debug.ReadBuildInfo).
    # The debug info should still be present (golang.org/issue/28753).
    cd unused
    go build
    exec ./unused$GOEXE
    
    -- x/go.mod --
    module x
    
    -- x/lib/lib.go --
    // Package lib accesses runtime/debug.modinfo before package main's init
    // functions have run.
    package lib
    
    import "runtime/debug"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget.go

    	t.budget = time.Duration(0)
    	return result
    }
    
    func (t *timeBudgetImpl) returnUnused(unused time.Duration) {
    	t.Lock()
    	defer t.Unlock()
    	if unused < 0 {
    		// We used more than allowed.
    		return
    	}
    	// add the unused time directly to the budget
    	// takeAvailable() will take into account the elapsed time
    	if t.budget = t.budget + unused; t.budget > t.maxBudget {
    		t.budget = t.maxBudget
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/go/doc/comment/testdata/link4.txt

    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]:	https://go.dev
    -- gofmt --
    These are not links.
    
    [x
    
    [x]:
    
    [x]:https://go.dev
    
    [x]https://go.dev
    
    [x]: surprise://go.dev
    
    [x]: surprise!
    
    But this is, with a tab (although it's unused).
    
    [z]: https://go.dev
    -- text --
    These are not links.
    
    [x
    
    [x]:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_why.txt

    
    -- why-language.txt --
    # golang.org/x/text/language
    mymodule/y
    mymodule/y.test
    rsc.io/quote
    rsc.io/sampler
    golang.org/x/text/language
    -- why-unused.txt --
    # golang.org/x/text/unused
    (main module does not need package golang.org/x/text/unused)
    -- why-text-module.txt --
    # golang.org/x/text
    mymodule/y
    mymodule/y.test
    rsc.io/quote
    rsc.io/sampler
    golang.org/x/text/language
    -- why-testonly.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 16:52:00 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            bugprone-suspicious-semicolon,
            bugprone-swapped-arguments,
            bugprone-terminating-continue,
            bugprone-unused-raii,
            bugprone-unused-return-value,
            misc-redundant-expression,
            misc-static-assert,
            misc-unused-parameters,
            misc-unused-using-decls,
            modernize-use-bool-literals,
            modernize-loop-convert,
            modernize-make-unique,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

         * and `System.err` is redirected at the `ERROR` log level.
         */
        @Suppress("unused")
        val logging by unsafeLazy { settings.serviceOf<LoggingManager>() }
    
        /**
         * Provides access to resource-specific utility methods, for example factory methods that create various resources.
         */
        @Suppress("unused")
        val resources: ResourceHandler by unsafeLazy { fileOperations.resources }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/golang.org_x_text_v0.0.0-20170915032832-14c0d48ead0c.txt

    -- .info --
    {"Version":"v0.0.0-20170915032832-14c0d48ead0c","Name":"v0.0.0-20170915032832-14c0d48ead0c","Short":"14c0d48ead0c","Time":"2017-09-15T03:28:32Z"}
    -- go.mod --
    module golang.org/x/text
    -- unused/unused.go --
    package unused
    -- language/lang.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:13 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vendor_unused.txt

    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0-unused => ./b2
    	example.com/c => ./c
    	example.com/d v0.1.0 => ./d1
    	example.com/d v0.2.0 => ./d2
    	example.com/e => example.com/e v0.1.0-unused
    )
    -- foo.go --
    package foo
    import _ "example.com/a"
    -- a/go.mod --
    module example.com/a
    require (
    	example.com/b v0.1.0 // indirect
    	example.com/c v0.1.0 // indirect
    )
    -- a/a.go --
    package a
    import _ "example.com/d"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. .golangci.yml

        - gomodguard
        - govet
        - ineffassign
        - misspell
        - revive
        - staticcheck
        - tenv
        - typecheck
        - unconvert
        - unused
    
    issues:
      exclude-use-default: false
      exclude:
        - "empty-block:"
        - "unused-parameter:"
        - "dot-imports:"
        - should have a package comment
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 02:17:03 UTC 2023
    - 689 bytes
    - Viewed (0)
Back to top