Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for linknew (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		ops:             S390Xops,
    		blocks:          S390Xblocks,
    		regnames:        regNamesS390X,
    		gpregmask:       gp,
    		fpregmask:       fp,
    		framepointerreg: -1, // not used
    		linkreg:         int8(num["R14"]),
    		imports: []string{
    			"cmd/internal/obj/s390x",
    		},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      """Parse the input source module and emit the TFR functions."""
    
      # Load the op library so the op is added to the op registry. This is
      # required when the op cc_library couldn't be statically linked in open
      # source.
      # This is a no op if the op shared library couldn't be found in the same
      # directory of the op Python API.
      # TODO(fengliuai): make the .so file path configurable.
      if op_libraries:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. src/reflect/type.go

    	prototype := *(**ptrType)(unsafe.Pointer(&iptr))
    	pp := *prototype
    
    	pp.Str = resolveReflectName(newName(s, "", false, false))
    	pp.PtrToThis = 0
    
    	// For the type structures linked into the binary, the
    	// compiler provides a good hash of the string.
    	// Create a good hash for the new string by using
    	// the FNV-1 hash's mixing function to combine the
    	// old hash and the new "*".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // We need to
        // 1. atomically swap the listeners with TOMBSTONE, this is because addListener uses that
        //    to synchronize with us
        // 2. reverse the linked list, because despite our rather clear contract, people depend on us
        //    executing listeners in the order they were added
        // 3. push all the items onto 'onto' and return the new head of the stack
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  6. pkg/scheduler/internal/cache/cache_test.go

    				}
    				i++
    			}
    			// Make sure we visited all the cached nodes in the above for loop.
    			if i != len(cache.nodes) {
    				t.Errorf("Not all the nodes were visited by following the NodeInfo linked list. Expected to see %v nodes, saw %v.", len(cache.nodes), i)
    			}
    
    			// Check number of nodes with pods with affinity
    			if len(snapshot.havePodsWithAffinityNodeInfoList) != test.expectedHavePodsWithAffinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    		meta := uintptr(sysReserve(nil, arenaMetaSize))
    		if meta != 0 {
    			mheap_.heapArenaAlloc.init(meta, arenaMetaSize, true)
    		}
    
    		// We want to start the arena low, but if we're linked
    		// against C code, it's possible global constructors
    		// have called malloc and adjusted the process' brk.
    		// Query the brk so we can avoid trying to map the
    		// region over it (which will cause the kernel to put
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     EXPECT_TRUE(foo.StatusIsOK());
    //   }
    
    // Note that we call GetTestTypeId() instead of GetTypeId<
    // ::testing::Test>() here to get the type ID of testing::Test.  This
    // is to work around a suspected linker bug when using Google Test as
    // a framework on macOS.  The bug causes GetTypeId<
    // ::testing::Test>() to return different values depending on whether
    // the call is from the Google Test framework itself or from user test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //     EXPECT_TRUE(foo.StatusIsOK());
    //   }
    
    // Note that we call GetTestTypeId() instead of GetTypeId<
    // ::testing::Test>() here to get the type ID of testing::Test.  This
    // is to work around a suspected linker bug when using Google Test as
    // a framework on macOS.  The bug causes GetTypeId<
    // ::testing::Test>() to return different values depending on whether
    // the call is from the Google Test framework itself or from user test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    		}
    
    		fmt.Fprintf(os.Stderr, "If reproducibility with go %s is not needed:\n\tgo mod tidy%s -compat=%s\n", compatVersion, goFlag, goVersion)
    
    		// TODO(#46141): Populate the linked wiki page.
    		fmt.Fprintf(os.Stderr, "For other options, see:\n\thttps://golang.org/doc/modules/pruning\n")
    	}
    
    	mg, err := rs.Graph(ctx)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top