Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,551 for kenv (0.1 sec)

  1. .github/workflows/maven_build_itself.yml

            shell: bash
            run: |
              set +e
              if [ -f ${{ env.TAR_BALL }} ]; then
                temp_dir=$(mktemp -d)
                tar -xzf ${{ env.TAR_BALL }} -C "$temp_dir" --strip 1
                maven_bin_dir=$temp_dir/bin
                if [ -d $maven_bin_dir ]; then
                  echo "tar.gz file \"${{ env.TAR_BALL }}\" successfully extracted in temporarily directory \"$temp_dir.\""
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/auto_clustering_test_helper.cc

      TF_RETURN_IF_ERROR(
          ReadTextProto(Env::Default(), string(pbtxt_file_path), &graphdef));
      return RunAutoClusteringTestImpl(std::move(graphdef),
                                       golden_summary_file_path);
    }
    
    Status AutoClusteringTest::RunAutoClusteringTestWithGzippedPbtxt(
        absl::string_view gzipped_pbtxt_file_path,
        absl::string_view golden_summary_file_path) {
      Env* env = Env::Default();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 12:11:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/git.go

    		// builders were on Git version 2.30.2.)
    		env := slices.Clip(baseEnv)
    		if p := req.Header.Get("Git-Protocol"); p != "" {
    			env = append(env, "GIT_PROTOCOL="+p)
    		}
    
    		h := &cgi.Handler{
    			Path:   h.gitPath,
    			Logger: logger,
    			Args:   []string{"http-backend"},
    			Dir:    dir,
    			Env:    env,
    		}
    		h.ServeHTTP(w, req)
    	})
    
    	return handler, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. .github/workflows/test-redistribute.yml

          - name: Build source distribution
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
            run: python -m build --sdist
          - name: Decompress source distribution
            run: |
              cd dist
              tar xvf fastapi*.tar.gz
          - name: Install test dependencies
            run: |
              cd dist/fastapi*/
              pip install -r requirements-tests.txt
            env:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. security/pkg/pki/ra/k8s_ra_test.go

    			expectedFail:          true,
    		},
    		{
    			name:                  "Root cert and intermediate CA are specified in mesh config and Root cert from cert chain is empty(only one leaf cert)",
    			rootCertForMeshConfig: path.Join(env.IstioSrc, "samples/certs", "workload-foo-root-certs.pem"),
    			certChain:             path.Join(env.IstioSrc, "samples/certs", "leaf-workload-foo-cert.pem"),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 00:44:54 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/git/issue61415.txt

    handle git
    
    env GIT_AUTHOR_NAME='Bryan C. Mills'
    env GIT_AUTHOR_EMAIL='******@****.***'
    env GIT_COMMITTER_NAME=$GIT_AUTHOR_NAME
    env GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL
    
    at 2023-11-14T13:00:00-05:00
    
    git init
    
    git add go.mod nested
    git commit -m 'nested: add go.mod'
    git branch -m main
    
    git tag has-nested
    
    at 2023-11-14T13:00:01-05:00
    
    git rm -r nested
    git commit -m 'nested: delete subdirectory'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 22:15:45 UTC 2023
    - 928 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/BuildEnvironmentModelCrossVersionSpec.groovy

            when:
            BuildEnvironment env = withConnection { it.getModel(BuildEnvironment.class) }
            GradleProject project = withConnection { it.getModel(GradleProject.class) }
    
            then:
            def inputArgsInBuild = project.description.split('##') as List
            env.java.jvmArguments.each { inputArgsInBuild.contains(it) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/accesslog_test.go

    				},
    			},
    		},
    	})
    
    	env := model.NewEnvironment()
    	env.ServiceDiscovery = serviceDiscovery
    	env.ConfigStore = configStore
    	env.Watcher = mesh.NewFixedWatcher(meshConfig)
    
    	pushContext := model.NewPushContext()
    	env.Init()
    	pushContext.InitContext(env, nil, nil)
    	env.SetPushContext(pushContext)
    
    	return env
    }
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. src/runtime/fds_test.go

    	if err := o.Close(); err != nil {
    		t.Fatal(err)
    	}
    
    	env := []string{"TEST_OUTPUT=" + outputPath}
    	for _, e := range os.Environ() {
    		if strings.HasPrefix(e, "GODEBUG=") || strings.HasPrefix(e, "GOTRACEBACK=") {
    			continue
    		}
    		env = append(env, e)
    	}
    
    	proc, err := os.StartProcess(fdsBin, []string{fdsBin}, &os.ProcAttr{
    		Env:   env,
    		Files: []*os.File{},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. internal/config/compress/compress.go

    		return cfg, nil
    	}
    
    	allowEnc := env.Get(EnvCompressAllowEncryption, kvs.Get(AllowEncrypted))
    	if allowEnc == "" {
    		allowEnc = env.Get(EnvCompressAllowEncryptionLegacy, "")
    	}
    
    	cfg.AllowEncrypted, err = config.ParseBool(allowEnc)
    	if err != nil {
    		return cfg, err
    	}
    
    	compressExtensions := env.Get(EnvCompressExtensions, kvs.Get(Extensions))
    	compressExtensionsLegacy := env.Get(EnvCompressExtensionsLegacy, "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top