Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 689 for 20something (0.15 sec)

  1. cni/pkg/nodeagent/netns.go

    	netns io.Closer
    	fd    uintptr
    	inode uint64
    }
    
    func (n *NetnsWithFd) Close() error {
    	if n.netns == nil {
    		return nil
    	}
    
    	ret := n.netns.Close()
    	// set fd to invalid value, so if something uses it by mistake it will err
    	uintZero := uintptr(0)
    	n.fd = ^uintZero
    	return ret
    }
    
    func (n *NetnsWithFd) Fd() uintptr {
    	return n.fd
    }
    
    func (n *NetnsWithFd) Inode() uint64 {
    	return n.inode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .configuration('something')
                .dependsOn(b, conf: 'something->unknown')
                .publish()
    
            buildFile << """
    configurations {
        compile
    }
    repositories {
        ivy { url "${ivyRepo.uri}" }
    }
    dependencies {
        compile group: 'test', name: 'target', version: '1.0', configuration: 'something'
    }
    task retrieve(type: Sync) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            def failingTestDetails = failingClassFile.testDetails('failed')
            failingTestDetails.assertDuration("1.000s")
            failingTestDetails.assertFailed()
    
            failingClassFile.assertHasFailure('failed', 'something failed\n\nthis is the failure\nat someClass\n')
    
            where:
            numThreads << [1, 4]
        }
    
        def "aggregate same tests run with different results - #numThreads parallel thread(s)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/cgo-callback.go

    	const n = 10
    	done := make(chan bool)
    	for i := 0; i < n; i++ {
    		go func() {
    			C.foo()
    			done <- true
    		}()
    	}
    	for i := 0; i < n; i++ {
    		<-done
    	}
    
    	// Do something to steal back any Ps from the Ms, just
    	// for coverage.
    	runtime.GC()
    
    	// End of traced execution.
    	trace.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtContextReceiver.kt

         *
         * @see KaContextReceiver
         */
        public abstract val label: Name?
    }
    
    public typealias KtContextReceiver = KaContextReceiver
    
    /**
     * Something which can have a [KaContextReceiver] declared. This may be a callable symbol, a class symbol, or a functional type.
     */
    public interface KaContextReceiversOwner : KaLifetimeOwner {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * This is required as the build operation notification machinery is effectively session scoped,
     * but we need to allow, external (i.e. non ListenerManager), listeners per build.
     * <p>
     * Furthermore, the actual lifecycle is not something that we currently model with the service registries.
     * The notification listener is effectively of cross build tree scope, which doesn't exist.
     * This is because GradleBuild uses a discrete tree (which is intended to change later).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/BuildResultLoggerIntegrationTest.groovy

            settingsFile << """
                includeBuild "child"
            """
            file("child/build.gradle") << """
                task executedTask {
                    doLast {
                        // Do something
                    }
                }
            """
            buildFile << """
                executedTask.dependsOn(gradle.includedBuild("child").task(":executedTask"))
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. src/net/conf.go

    		return fallbackOrder, nil
    	}
    
    	// Try to figure out the order to use for searches.
    	// If we don't recognize something, use fallbackOrder.
    	// That will use cgo unless the Go resolver was explicitly requested.
    	// If we do figure out the order, return something other
    	// than fallbackOrder to use the Go resolver with that order.
    
    	dnsConf = getSystemDNSConfig()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. .gitignore

    # OSX leaves these everywhere on SMB shares
    ._*
    
    # OSX trash
    .DS_Store
    
    # Developers can store local stuff in dirs named __something
    __*
    
    # Eclipse files
    .classpath
    .project
    .settings/**
    
    # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
    .idea/
    *.iml
    
    # Vscode files
    .vscode
    
    # This is where the result of the go build goes
    /output*/
    /_output*/
    /_output
    
    # Emacs save files
    *~
    \#*\#
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                library {
                    dependencies {
                        something("com.google.guava:guava:30.1.1-jre")
                        somethingElse("org.apache.commons:commons-lang3:3.12.0")
                    }
                }
            """
            file("settings.gradle") << defineSettings()
    
            expect: "a dependency has been added to the something configuration"
            succeeds("dependencies", "--configuration", "myConf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top