Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for ctan (0.13 sec)

  1. cluster/gce/gci/configure-helper.sh

    "
        gitref="${version//*+/}"
      fi
      cat > /etc/motd <<EOF
    
    Welcome to Kubernetes ${version}!
    
    You can find documentation for Kubernetes at:
      http://docs.kubernetes.io/
    
    The source for this release can be found at:
      /home/kubernetes/kubernetes-src.tar.gz
    Or you can download it at:
      https://storage.googleapis.com/gke-release/kubernetes/release/${version}/kubernetes-src.tar.gz
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		}
    
    		// multiple hosts and TCP is invalid unless the resolution type is NONE.
    		// depending on the protocol, we can differentiate between hosts when proxying:
    		// - with HTTP, the authority header can be used
    		// - with HTTPS/TLS with SNI, the ServerName can be used
    		// however, for plain TCP there is no way to differentiate between the
    		// hosts so we consider it invalid, unless the resolution type is NONE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        // Guarded By Segment.this
        <K, V> void copyAccessEntry(ReferenceEntry<K, V> original, ReferenceEntry<K, V> newEntry) {
          // TODO(fry): when we link values instead of entries this method can go
          // away, as can connectAccessOrder, nullifyAccessOrder.
          newEntry.setAccessTime(original.getAccessTime());
    
          connectAccessOrder(original.getPreviousInAccessQueue(), newEntry);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        fi
        ret="${ret},subnet=${subnetURL}"
        ret="${ret},aliases=pods-default:${alias_size}"
        ret="${ret} --no-can-ip-forward"
      else
        if [[ -n ${subnet:-} ]]; then
          ret="${ret} --subnet ${subnetURL}"
        else
          ret="${ret} --network ${networkURL}"
        fi
    
        ret="${ret} --can-ip-forward"
        if [[ -n ${address:-} ]] && [[ "$address" != "no-address" ]]; then
          ret="${ret} --address ${address}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		if len(textp) > 0 && ldr.SymName(textp[0]) == "go:buildid" {
    			i++
    		}
    		// Skip over C symbols, as functions in a (C object) section must stay together.
    		// TODO: maybe we can move a section as a whole.
    		// Note: we load C symbols before Go symbols, so we can scan from the start.
    		for i < len(textp) && (ldr.SubSym(textp[i]) != 0 || ldr.AttrSubSymbol(textp[i])) {
    			i++
    		}
    		textp = textp[i:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // Output always have rank 4. All dimensions are initialized to
      // dynamic size and can be partially inferred.
      // TFL's conv2d is always NHWC format & the filter is OHWI.
      SmallVector<int64_t, 4> return_shape(4, ShapedType::kDynamic);
      return_shape[0] = input_ty.getDimSize(0);
      return_shape[3] = filter_ty.getDimSize(0);
    
      // Spatial dimensions can be inferred only when both input and filter are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    			wantIndexesToAdd: []int{1, 3},
    		},
    		"subset of indexes can be recreated now": {
    			indexesToAdd: []int{1, 3},
    			podsWithDelayedDeletionPerIndex: map[int]*v1.Pod{
    				1: buildPod().indexFailureCount("0").index("1").customDeletionTimestamp(now).Pod,
    			},
    			wantIndexesToAdd: []int{3},
    		},
    		"subset of indexes can be recreated now as the pods failed long time ago": {
    			indexesToAdd: []int{1, 3},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    	expectedDesiredReplicas      int32
    	expectedConditions           []autoscalingv2.HorizontalPodAutoscalerCondition
    	// Channel with names of HPA objects which we have reconciled.
    	processed chan string
    
    	// expected results reported to the mock monitor at first.
    	expectedReportedReconciliationActionLabel     monitor.ActionLabel
    	expectedReportedReconciliationErrorLabel      monitor.ErrorLabel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    // CMP(x,-y) -> CMN(x,y) is only valid for unordered comparison, if y can be -1<<63
    ((EQ|NE) (CMP x z:(NEG y)) yes no)   && z.Uses == 1 => ((EQ|NE) (CMN x y) yes no)
    ((Equal|NotEqual) (CMP x z:(NEG y))) && z.Uses == 1 => ((Equal|NotEqual) (CMN x y))
    
    // CMPW(x,-y) -> CMNW(x,y) is only valid for unordered comparison, if y can be -1<<31
    ((EQ|NE) (CMPW x z:(NEG y)) yes no)   && z.Uses == 1 => ((EQ|NE) (CMNW x y) yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top