Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for bindat (0.11 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/binder.go

    //     This is handled in the scheduler and not here.
    //     f. Asynchronously bind volumes and pod in a separate goroutine
    //     i.  BindPodVolumes() is called first in PreBind phase. It makes all the necessary API updates and waits for
    //     PV controller to fully bind and provision the PVCs. If binding fails, the Pod is sent
    //     back through the scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/bindm.c

    Cherry Mui <******@****.***> 1684339275 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 692 bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/bindm.go

    // license that can be found in the LICENSE file.
    
    //go:build !plan9 && !windows
    
    // Test that callbacks from C to Go in the same C-thread always get the same m.
    // Make sure the extra M bind to the C-thread.
    
    package main
    
    /*
    extern void CheckBindM();
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"sync"
    	"sync/atomic"
    )
    
    var (
    	mutex      = sync.Mutex{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can configure tool executables"() {
            def binDir = testDirectory.createDir("bin")
            wrapperTool(binDir, "c-compiler", toolChain.CCompiler, "-DFRENCH")
            wrapperTool(binDir, "static-lib", toolChain.staticLibArchiver)
            wrapperTool(binDir, "linker", toolChain.linker)
    
            when:
            buildFile << """
    model {
        toolChains {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/ArchitectureSpecificVisualCpp.java

        public File getBinDir() {
            return binDir;
        }
    
        @Override
        public List<File> getPath() {
            return paths;
        }
    
        @Override
        public File getCompilerExecutable() {
            return new File(binDir, COMPILER_FILENAME);
        }
    
        @Override
        public File getLinkerExecutable() {
            return new File(binDir, LINKER_FILENAME);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Emitter.kt

                )
            }.toList()
    
        if (binDir != null) {
            writeFile(
                moduleFileFor(binDir, moduleName),
                moduleMetadataBytesFor(emittedClassNames)
            )
        }
    
        return emittedClassNames
    }
    
    
    internal
    fun IO.makeAccessorOutputDirs(srcDir: File, binDir: File?, packagePath: String) = io {
        srcDir.resolve(packagePath).mkdirs()
        binDir?.apply {
            resolve(packagePath).mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. docs/bigdata/README.md

    ![ambari-login](https://github.com/minio/minio/blob/master/docs/bigdata/images/image3.png?raw=true "ambari login")
    
    ### **3.1 Configure Hadoop**
    
    Navigate to **Services** -> **HDFS** -> **CONFIGS** -> **ADVANCED** as shown below
    
    ![hdfs-configs](https://github.com/minio/minio/blob/master/docs/bigdata/images/image2.png?raw=true "hdfs advanced configs")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitSdkInstall.java

    public class WindowsKitSdkInstall extends WindowsKitInstall implements WindowsSdkInstall {
        private final File binDir;
        private final SystemInfo systemInfo;
    
        public WindowsKitSdkInstall(File baseDir, VersionNumber version, File binDir, String name, SystemInfo systemInfo) {
            super(baseDir, version, name);
            this.binDir = binDir;
            this.systemInfo = systemInfo;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/UnboundRulesProcessorTest.groovy

            )
        }
    
        def "creates unbound rules for multiple binders"() {
            binder {
                descriptor("firstRule")
                subjectReference("path.subject.first", String)
            }
            binder {
                descriptor("secondRule")
                subjectReference("path.subject.second", Number)
            }
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/go/ast/import.go

    		if len(d.Specs) > 0 {
    			lastSpec := d.Specs[len(d.Specs)-1]
    			lastLine := lineAt(fset, lastSpec.Pos())
    			rParenLine := lineAt(fset, d.Rparen)
    			for rParenLine > lastLine+1 {
    				rParenLine--
    				fset.File(d.Rparen).MergeLine(rParenLine)
    			}
    		}
    	}
    }
    
    func lineAt(fset *token.FileSet, pos token.Pos) int {
    	return fset.PositionFor(pos, false).Line
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top