Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 125 for ulong (1.12 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        //
                        // At this point the DefaultModelBuildingListener has fired and it populates the
                        // remote repositories with those found in the pom.xml, along with the existing externally
                        // defined repositories.
                        //
                        request.setRemoteRepositories(project.getRemoteArtifactRepositories());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		t.Fatalf("Open(%q) failed: %v", from, err)
    	}
    	file.Close()
    }
    
    func TestLongSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	defer chtmpdir(t)()
    	s := "0123456789abcdef"
    	// Long, but not too long: a common limit is 255.
    	s = s + s + s + s + s + s + s + s + s + s + s + s + s + s + s
    	from := "longsymlinktestfrom"
    	err := Symlink(s, from)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    		}
    	}
    	return 0
    }
    
    // nextFree returns the next free object from the cached span if one is available.
    // Otherwise it refills the cache with a span with an available object and
    // returns that object along with a flag indicating that this was a heavy
    // weight allocation. If it is a heavy weight allocation the caller must
    // determine whether a new GC cycle needs to be started or if the GC is active
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    // linear proportion to the allocation cost. Adjusting GOGC just changes the linear constant
    // (and also the amount of extra memory used).
    
    // Oblets
    //
    // In order to prevent long pauses while scanning large objects and to
    // improve parallelism, the garbage collector breaks up scan jobs for
    // objects larger than maxObletBytes into "oblets" of at most
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <2> Does the same for the `myNullableProperty` project property, but the build won't fail on using the `myNullableProperty` value as long as you check for null (standard https://kotlinlang.org/docs/reference/null-safety.html[Kotlin rules for null safety] apply)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

              return forward_pass_ops.contains(use.getOwner());
            });
      }
    
      VLOG(3) << "Cloned " << cloned_inputs << " TPUReplicatedInputOps";
    
      // Add TPUReplicatedInput/TPUReplicatedOutput pairs along each edge.
      llvm::SetVector<Operation*> new_forward_ops;
      for (Operation* op : forward_pass_ops) {
        // TODO(bfontain): Should validate that all the TPU ops are in the same
        // replication region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedCalcCost: 1887437,
    			setMaxElements:   5,
    			expectedSetCost:  17,
    		},
    		// all array-of-array tests should have the same expected cost along the same expression,
    		// since arrays-of-arrays are serialized the same in minimized form regardless of item type
    		// of the subarray ([[], [], ...])
    		{
    			name:             "array of number arrays with all",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. src/testing/testing.go

    	context  *testContext // For running tests and subtests.
    }
    
    func (c *common) private() {}
    
    // Name returns the name of the running (sub-) test or benchmark.
    //
    // The name will include the name of the test along with the names of
    // any nested sub-tests. If two sibling sub-tests have the same name,
    // Name will append a suffix to guarantee the returned name is unique.
    func (c *common) Name() string {
    	return c.name
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. internal/bucket/lifecycle/lifecycle_test.go

    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU Affero General Public License for more details.
    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package lifecycle
    
    import (
    	"bytes"
    	"encoding/xml"
    	"fmt"
    	"net/http"
    	"net/http/httptest"
    	"strconv"
    	"strings"
    	"testing"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      }
    }
    
    # Returns a PowerShell object representing the Windows version.
    function Get_WindowsVersion {
      # Unlike checking `[System.Environment]::OSVersion.Version`, this long-winded
      # approach gets the OS revision/patch number correctly
      # (https://superuser.com/a/1160428/652018).
      $win_ver = New-Object -TypeName PSObject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top