Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 654 for envs (0.04 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

      status = env_->NewWritableFile(filepath, &new_file);
      if (!status.ok())
        GTEST_SKIP() << "NewWritableFile() not supported: " << status;
    
      status = env_->DeleteFile(filepath);
      EXPECT_PRED2(UnimplementedOrReturnsCode, status, Code::OK);
    }
    
    TEST_P(ModularFileSystemTest, TestDeleteFileDoesNotExist) {
      const std::string filepath = GetURIForPath("a_file");
      Status status = env_->DeleteFile(filepath);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	}
    	for k := 0; k < n; k++ {
    		f := t.ents[k]
    		id := t.evictCount + uint64(k) + 1
    		if t.byName[f.Name] == id {
    			delete(t.byName, f.Name)
    		}
    		if p := (pairNameValue{f.Name, f.Value}); t.byNameValue[p] == id {
    			delete(t.byNameValue, p)
    		}
    	}
    	copy(t.ents, t.ents[n:])
    	for k := t.len() - n; k < t.len(); k++ {
    		t.ents[k] = HeaderField{} // so strings can be garbage collected
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/save_variables_test.cc

    using ::testing::IsEmpty;
    using ::testing::Not;
    using ::testing::UnorderedElementsAre;
    using ::tsl::testing::IsOk;
    
    // This fixture simply wraps the Env and MLIRContext.
    class SaveVariablesToCheckpointTest : public ::testing::Test {
     protected:
      SaveVariablesToCheckpointTest() : env_(Env::Default()) {
        ctx_.loadDialect<mlir::func::FuncDialect, mlir::TF::TensorFlowDialect,
                         mlir::tf_saved_model::TensorFlowSavedModelDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "CommonProgramFiles(x86)",
        "CommonProgramW6432",
        "ProgramData",
        "ProgramFiles",
        "ProgramFiles(x86)",
        // Simply putting PATH there isn't enough. Windows has case-insensitive env vars but something else fails if the Path variable is published as PATH for test tasks.
        OperatingSystem.current().pathVar,
        "PATHEXT",
    )
    
    
    val credentialsKeywords = listOf(
        "api_key",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

                    public Process exec(String command, String[] envp) { return null; }
                    public Process exec(String command, String[] envp, File file) { return null; }
                    public Process exec(String command, List<?> envp, File file) { return null; }
                    public Process exec(String[] command) { return null; }
                    public Process exec(String[] command, String[] envp) { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. cmd/common-main_test.go

    			tmpfile.Close()
    
    			ekvs, err := minioEnvironFromFile(tmpfile.Name())
    			if err != nil && !testCase.expectedErr {
    				t.Error(err)
    			}
    			if err == nil && testCase.expectedErr {
    				t.Error(errors.New("expected error, found success"))
    			}
    
    			if len(ekvs) != len(testCase.expectedEkvs) {
    				t.Errorf("expected %v keys, got %v keys", len(testCase.expectedEkvs), len(ekvs))
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. hack/testdata/pod-with-api-env.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: env-test-pod
    spec:
      containers:
        - name: test-container
          image: registry.k8s.io/busybox
          command: [ "/bin/sh", "-c", "env" ]
          env:
            - name: TEST_CMD_1
              valueFrom:
                secretKeyRef:
                  name: test-secret
                  key: key-1
            - name: TEST_CMD_2
              valueFrom:
                configMapKeyRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 593 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
        public static Process exec(Runtime runtime, String[] command, String[] envp, String consumer) throws IOException {
            externalProcessStarted(command, consumer);
            return runtime.exec(command, envp);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. releasenotes/notes/env-workload-rsa-keysize.yaml

    sha-rath <******@****.***> 1650601369 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 22 04:22:49 UTC 2022
    - 171 bytes
    - Viewed (0)
  10. src/internal/trace/testdata/testprog/annotations-stress.go

    	"fmt"
    	"log"
    	"os"
    	"runtime/trace"
    	"time"
    )
    
    func main() {
    	baseCtx := context.Background()
    
    	// Create a task that starts and ends entirely outside of the trace.
    	ctx0, t0 := trace.NewTask(baseCtx, "parent")
    
    	// Create a task that starts before the trace and ends during the trace.
    	ctx1, t1 := trace.NewTask(ctx0, "type1")
    
    	// Start tracing.
    	if err := trace.Start(os.Stdout); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top