Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 193 for ulong (0.25 sec)

  1. 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)
  2. 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)
  3. pkg/volume/csi/csi_mounter_test.go

    			volume.VolumeOptions{},
    		)
    		if err != nil {
    			t.Fatalf("Error creating a new mounter: %s", err)
    		}
    
    		csiMounter := mounter.(*csiMountMgr)
    
    		// Check to see if we can obtain the CSIDriver, along with examining its FSGroupPolicy
    		fsGroup, err := csiMounter.getFSGroupPolicy()
    		if err != nil {
    			t.Fatalf("Error attempting to obtain FSGroupPolicy: %v", err)
    		}
    		if fsGroup != *driver.Spec.FSGroupPolicy {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    	set.Name = "my-set"
    	claim := v1.PersistentVolumeClaim{}
    	claim.Name = "volume-my-set-2"
    	if pod := getClaimPodName(&set, &claim); pod != "my-set-2" {
    		t.Errorf("Expected my-set-2 found %s", pod)
    	}
    	claim.Name = "long-volume-my-set-20"
    	if pod := getClaimPodName(&set, &claim); pod != "my-set-20" {
    		t.Errorf("Expected my-set-20 found %s", pod)
    	}
    	claim.Name = "volume-2-my-set"
    	if pod := getClaimPodName(&set, &claim); pod != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. configure.py

      # First available in VS 16.4. Speeds up Windows compile times by a lot. See
      # https://groups.google.com/a/tensorflow.org/d/topic/build/SsW98Eo7l3o/discussion
      # pylint: disable=line-too-long
      write_to_bazelrc(
          'build --copt=/d2ReducedOptimizeHugeFunctions --host_copt=/d2ReducedOptimizeHugeFunctions'
      )
    
      if get_var(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    		if err != nil {
    			ld.error(err)
    		} else {
    			if ld.TidyGoVersion != "" {
    				// Attempt to switch to the requested Go version. We have been using its
    				// pruning and semantics all along, but there may have been — and may
    				// still be — requirements on higher versions in the graph.
    				tidy := overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: ld.TidyGoVersion}})
    				mg, err := tidy.Graph(ctx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                // download progress all over the place
                //
                return getConsoleTransferListener(verbose);
            } else {
                // default: batch mode which goes along with interactive
                return getBatchTransferListener();
            }
        }
    
        private String determineMakeBehavior(final CommandLine cl) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    // processWeightedDestination processes a weighted destination in a route. It specifies to which cluster the route should
    // be routed to. It also sets the headers and hash policy if specified.
    // Returns the hostname of the destination along with its weight.
    func processWeightedDestination(dst *networking.HTTPRouteDestination, serviceRegistry map[host.Name]*model.Service,
    	listenerPort int,
    	hashByDestination DestinationHashMap,
    	action *route.RouteAction,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getFirstLevelModuleDependencies(Spec)`
    - `getFiles(Spec)`
    - `getArtifacts(Spec)`
    
    To mitigate this deprecation, consider the example below that leverages the `ArtifactView`
    API along with the `componentFilter` method to select a subset of a Configuration's artifacts:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    val conf by configurations.creating
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. cmd/erasure-healing_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 cmd
    
    import (
    	"bytes"
    	"context"
    	"crypto/rand"
    	"crypto/sha256"
    	"errors"
    	"io"
    	"os"
    	"path"
    	"reflect"
    	"testing"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top