Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for renameat (0.15 sec)

  1. src/debug/elf/elf.go

    // Relocation types for PowerPC.
    //
    // Values that are shared by both R_PPC and R_PPC64 are prefixed with
    // R_POWERPC_ in the ELF standard. For the R_PPC type, the relevant
    // shared relocations have been renamed with the prefix R_PPC_.
    // The original name follows the value in a comment.
    type R_PPC int
    
    const (
    	R_PPC_NONE            R_PPC = 0  // R_POWERPC_NONE
    	R_PPC_ADDR32          R_PPC = 1  // R_POWERPC_ADDR32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    		}},
    		expectedNewlyActiveUDPServices: map[proxy.ServicePortName]bool{},
    		expectedReadyEndpoints:         map[types.NamespacedName]int{},
    	}, {
    		// Case[11]: rename a port
    		name:              "rename a port",
    		previousEndpoints: namedPort,
    		currentEndpoints:  namedPortRenamed,
    		oldEndpoints: map[proxy.ServicePortName][]endpointExpectation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

          }
        }
      }
    
      static class LoadingValueReference<K, V> implements ValueReference<K, V> {
        volatile ValueReference<K, V> oldValue;
    
        // TODO(fry): rename get, then extend AbstractFuture instead of containing SettableFuture
        final SettableFuture<V> futureValue = SettableFuture.create();
        final Stopwatch stopwatch = Stopwatch.createUnstarted();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        self.assertTrue(self._contains_quantized_function_call(output_graphdef))
    
        # Makes sure that the original function identified by the signature key
        # `main` is renamed to `main_0` (see `InsertMainFunctionPass` for details).
        self.assertTrue(
            any(
                map(
                    lambda func: func.signature.name == 'main_0',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // and only using an import path that omits the prefix up to and
    // including the vendor element.
    //
    // Here's the example from the previous section,
    // but with the "internal" directory renamed to "vendor"
    // and a new foo/vendor/crash/bang directory added:
    //
    //	/home/user/go/
    //	    src/
    //	        crash/
    //	            bang/              (go code in package bang)
    //	                b.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    		// here, the assembly has failed.
    		// if it's a byte instruction that has
    		// unaddressable registers, try to
    		// exchange registers and reissue the
    		// instruction with the operands renamed.
    		pp := *p
    
    		unbytereg(&pp.From, &pp.Ft)
    		unbytereg(&pp.To, &pp.Tt)
    
    		z := int(p.From.Reg)
    		if p.From.Type == obj.TYPE_REG && z >= REG_BP && z <= REG_DI {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top