Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for pack20 (0.11 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            private final BuildOperationRunner buildOperationRunner;
            private final BuildCacheEntryPacker packer;
            private final OriginMetadataFactory originMetadataFactory;
            private final Interner<String> stringInterner;
    
            PackOperationExecutor(BuildOperationRunner buildOperationRunner, BuildCacheEntryPacker packer, OriginMetadataFactory originMetadataFactory, Interner<String> stringInterner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/cmd/pack/pack_test.go

    	}
    
    	goBin := testenv.GoToolPath(t)
    	run(goBin, "tool", "compile", "-pack", "-p=p", "-o", "p.a", "p.go")
    	run(packPath(t), "c", "packed.a", "p.a")
    	fi, err := os.Stat(filepath.Join(dir, "p.a"))
    	if err != nil {
    		t.Fatalf("stat p.a failed: %v", err)
    	}
    	fi2, err := os.Stat(filepath.Join(dir, "packed.a"))
    	if err != nil {
    		t.Fatalf("stat packed.a failed: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            !localMissLoadOp.result.hit
    
            packOp.details.cacheKey == cacheKey
    
            packOp.result.archiveSize == archiveSize
            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
            storeOp.details.archiveSize == archiveSize
            storeOp.result.stored
    
            when:
            succeeds("clean", "t")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/distpack/pack.go

    Michael Matloob <******@****.***> 1715626742 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

                }
    
                private void doRun() {
                    while (true) {
                        DatagramPacket packet;
                        FileLockPacketPayload payload;
                        try {
                            packet = communicator.receive();
                            payload = communicator.decode(packet);
                        } catch (GracefullyStoppedException e) {
                            return;
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/sts-datatypes.go

    	// Also, future updates to AWS might require larger sizes.
    	Credentials auth.Credentials `xml:",omitempty"`
    
    	// A percentage value that indicates the size of the policy in packed form.
    	// The service rejects any policy with a packed size greater than 100 percent,
    	// which means the policy exceeded the allowed space.
    	PackedPolicySize int `xml:",omitempty"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

                        byte[] bytes = new byte[9]
                        DatagramPacket packet = new DatagramPacket(bytes, bytes.length)
                        receivingSocket.receive(packet)
                        if (selectedAddress == null) {
                            selectedAddress = packet.address
                        }
                        if (selectedAddress == packet.address) {
                            reactOnRequest.run()
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. cni/pkg/iptables/iptables.go

    	//
    	// DESC: If we have a packet mark, set a connmark.
    	iptablesBuilder.AppendRule(iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE, "-m", "mark",
    		"--mark", inpodMark,
    		"-j", "CONNMARK",
    		"--set-xmark", inpodTproxyMark)
    
    	// Handle healthcheck probes from the host node. In the host netns, before the packet enters the pod, we SNAT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. tensorflow/c/eager/parallel_device/parallel_device.cc

      if (*requested_placement == '\0') {
        TF_SetStatus(
            status, TF_INTERNAL,
            "Ops must be placed on the parallel device explicitly, or their inputs "
            "first un-packed. Got an un-placed op with an input placed on the "
            "parallel device.");
        return;
      }
      TFE_Context* context = TFE_OpGetContext(original_op, status);
      if (TF_GetCode(status) != TF_OK) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

    }
    
    // Checks if a block argument is packed (forwarding a packed input).
    bool ReplicateOp::IsPackedBlockArgument(BlockArgument block_arg) {
      return !IsReplicatedBlockArgument(block_arg);
    }
    
    // Returns the operand index of the operand being forwarded as a
    // replicated/packed block argument for a given replica. This assumes a valid
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top