Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 654 for envs (0.04 sec)

  1. src/internal/txtar/archive.go

    // Each file entry begins with a file marker line of the form "-- FILENAME --"
    // and is followed by zero or more file content lines making up the file data.
    // The comment or file content ends at the next file marker line.
    // The file marker line must begin with the three-byte sequence "-- "
    // and end with the three-byte sequence " --", but the enclosed
    // file name can be surrounding by additional white space,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/ops/gen/common/controller.h

    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/framework/op_gen_lib.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    
    class Controller {
     public:
      explicit Controller(PathConfig path_config, Env* env = Env::Default());
      virtual ~Controller();
      const void WriteFile(const string& file_path, const SourceCode& code) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            createCache();
            // Ends up with: 1 2 3 -> 4 <- 5 6
            checkAdds(1, 2, 5, 6, 4, 3);
            cache.verify();
            cache.remove("key_5");
            verifyAndCloseCache();
        }
    
        @Test
        public void removalMergesRemainingEntriesIntoLeftSibling() {
            createCache();
            // Ends up with: 1 2 -> 3 <- 4 5
            checkAdds(1, 2, 4, 5, 3);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingEnvMapTest.groovy

                return super.getOrDefault(Objects.requireNonNull(key), defaultValue)
            }
    
            @Override
            protected Map<String, String> delegate() {
                // Groovy ends up calling get() to obtain innerMap if there's no explicit qualifier, causing stack overflow.
                return AccessTrackingEnvMapTest.this.innerMap
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. test/abi/leaf2.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import "fmt"
    
    type i4 struct {
    	a, b, c, d int
    }
    
    //go:registerparams
    //go:noinline
    func F(x i4) i4 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 768 bytes
    - Viewed (0)
  6. src/runtime/rt0_linux_mipsx.s

    TEXT _rt0_mipsle_linux(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    	MOVW	0(R29), R4 // argc
    	ADD	$4, R29, R5 // argv
    	JMP	main(SB)
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 797 bytes
    - Viewed (0)
  7. src/runtime/rt0_openbsd_mips64.s

    TEXT _rt0_mips64le_openbsd(SB),NOSPLIT,$0
    	JMP	_main<>(SB)
    
    TEXT _main<>(SB),NOSPLIT|NOFRAME,$0
    	// In a statically linked binary, the stack contains argc,
    	// argv as argc string pointers followed by a NULL, envv as a
    	// sequence of string pointers followed by a NULL, and auxv.
    	// There is no TLS base pointer.
    #ifdef GOARCH_mips64
    	MOVW	4(R29), R4 // argc, big-endian ABI places int32 at offset 4
    #else
    	MOVW	0(R29), R4 // argc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:07:46 UTC 2020
    - 976 bytes
    - Viewed (0)
  8. pkg/test/util/retry/retry.go

    		err := fn()
    		if err != nil {
    			return nil, false, err
    		}
    
    		return nil, true, nil
    	}, options...)
    
    	return e
    }
    
    // UntilSuccessOrFail calls UntilSuccess, and fails t with Fatalf if it ends up returning an error
    func UntilSuccessOrFail(t test.Failer, fn func() error, options ...Option) {
    	t.Helper()
    	err := UntilSuccess(fn, options...)
    	if err != nil {
    		t.Fatalf("retry.UntilSuccessOrFail: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/syscall/exec_libc2.go

    }
    
    // Implemented in runtime package.
    func runtime_BeforeFork()
    func runtime_AfterFork()
    func runtime_AfterForkInChild()
    
    // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child.
    // If a dup or exec fails, write the errno error to pipe.
    // (Pipe is close-on-exec so if exec succeeds, it will be closed.)
    // In the child, this function must not acquire any locks, because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. tests/multi_primary_keys_test.go

    	}
    
    	if DB.Model(&blog2).Association("LocaleTags").Count() != 2 {
    		t.Fatalf("EN Blog should has two tags after ZH Blog Delete with EN's tag")
    	}
    
    	DB.Model(&blog2).Association("LocaleTags").Delete(tag5)
    
    	if DB.Model(&blog).Association("LocaleTags").Count() != 3 {
    		t.Fatalf("ZH Blog should has three tags after EN Blog Delete with EN's tag")
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Jan 06 07:02:53 UTC 2022
    - 12.8K bytes
    - Viewed (0)
Back to top