Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 292 for forkx (0.28 sec)

  1. pkg/kubelet/sysctl/safe_sysctls_test.go

    		want       []string
    	}{
    		{
    			name: "failed to get kernelVersion, only return safeSysctls with no kernelVersion limit",
    			getVersion: func() (*version.Version, error) {
    				return nil, fmt.Errorf("fork error")
    			},
    			want: []string{
    				"kernel.shm_rmid_forced",
    				"net.ipv4.ip_local_port_range",
    				"net.ipv4.tcp_syncookies",
    				"net.ipv4.ping_group_range",
    				"net.ipv4.ip_unprivileged_port_start",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 15 15:05:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. .github/workflows/release-branch-cherrypick.yml

    jobs:
      cherrypick:
        name: Cherrypick to ${{ github.event.inputs.release_branch}} - ${{ github.event.inputs.git_commit }}
        runs-on: ubuntu-latest
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        steps:
        - name: Checkout code
          uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
          with:
            ref: ${{ github.event.inputs.release_branch }}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 14:49:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. .github/workflows/sigbuild-docker.yml

        branches:
          - master
    
    permissions:
      contents: read
    
    jobs:
      docker:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        strategy:
          matrix:
            python-version: [python3.9, python3.10, python3.11, python3.12]
        steps:
          - name: Delete unnecessary tools folder
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. android/pom.xml

                    <version>2.23.0</version>
                  </path>
                </annotationProcessorPaths>
                <!-- Fork:
    
                     - for JDK8 because we use a javac9 bootclasspath
    
                     - for JDK9+ because we need args like add-exports
                     -->
                <fork>true</fork>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pom.xml

                    <version>2.23.0</version>
                  </path>
                </annotationProcessorPaths>
                <!-- Fork:
    
                     - for JDK8 because we use a javac9 bootclasspath
    
                     - for JDK9+ because we need args like add-exports
                     -->
                <fork>true</fork>
              </configuration>
            </plugin>
            <plugin>
              <artifactId>maven-jar-plugin</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/encoding/json/example_test.go

    		Name   string
    		Number int
    	}
    	roads := []Road{
    		{"Diamond Fork", 29},
    		{"Sheep Creek", 51},
    	}
    
    	b, err := json.Marshal(roads)
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	var out bytes.Buffer
    	json.Indent(&out, b, "=", "\t")
    	out.WriteTo(os.Stdout)
    	// Output:
    	// [
    	// =	{
    	// =		"Name": "Diamond Fork",
    	// =		"Number": 29
    	// =	},
    	// =	{
    	// =		"Name": "Sheep Creek",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileParallelIntegrationTest.groovy

                buildFile << """
    project(':$projectName') {
        tasks.withType(JavaCompile) {
            sourceCompatibility = '${version}'
            targetCompatibility = '${version}'
    
            options.with {
                fork = true
                forkOptions.javaHome = file("${javaHome}")
            }
        }
    }
    """
                file("${projectName}/src/main/java/Foo.java") << """
    import org.apache.commons.lang.StringUtils;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/UnsupportedJavaVersionCrossCompilationIntegrationTest.groovy

            buildFile << """
    apply plugin: 'java'
    sourceCompatibility = ${version}
    targetCompatibility = ${version}
    ${mavenCentralRepository()}
    tasks.withType(JavaCompile) {
        options.with {
            fork = true
            forkOptions.javaHome = file("$javaHome")
        }
    }
    tasks.withType(Javadoc) {
        executable = "$javadoc"
    }
    tasks.withType(Test) {
        executable = "$java"
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaConcurrencyIntegrationTest.groovy

            settingsFile << """
                include 'a', 'b', 'c', 'd'
            """
            buildFile << """
                allprojects {
                    tasks.withType(AbstractScalaCompile) {
                        options.fork = true
                    }
                    ${mavenCentralRepository()}
                    plugins.withId("scala") {
                        dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 16:10:12 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/taskInputsOutputs.graffle

    2\cocoartf1404\cocoasubrtf470 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;} {\colortbl;\red255\green255\blue255;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc \f0\fs24 \cf0 Fork}VerticalPad0ClassLin{82, 147}{168, 133}StylestrokeHeadArrow{{24, 101.5}, {64, 28}}ClassShapedGraphicFi.00358888g0.350909r0.046105FontHelveticaS{\rtf1\ansi\ansicpg1252\cocoartf1404\cocoasubrtf470 \cocoascreenfonts1{\fonttbl\f0\fswiss\fcharset0 Helvetica;}...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top