Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for LAST (0.28 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

      final Weigher<K, V> weigher;
    
      /** How long after the last access to an entry the map will retain that entry. */
      final long expireAfterAccessNanos;
    
      /** How long after the last write to an entry the map will retain that entry. */
      final long expireAfterWriteNanos;
    
      /** How long after the last write an entry becomes a candidate for refresh. */
      final long refreshNanos;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    // for a package using the import path.
    //
    // The executable name is the last element of the import path.
    // In module-aware mode, an additional rule is used on import paths
    // consisting of two or more path elements. If the last element is
    // a vN path element specifying the major version, then the
    // second last element of the import path is used instead.
    func (p *Package) exeFromImportPath() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      # Report logging choice (if any).
      if [[ "${ENABLE_NODE_LOGGING-}" == "true" ]]; then
        echo "+++ Logging using Fluentd to ${LOGGING_DESTINATION:-unknown}"
      fi
    
      # Wait for last batch of jobs
      kube::util::wait-for-jobs || {
        code=$?
        echo -e "${color_red}Failed to create firewall rule.${color_norm}" >&2
        exit $code
      }
    }
    
    function get-scope-flags() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status_test.go

    			}
    
    			// Version skew workaround. See: https://github.com/kubernetes/kubernetes/issues/16961
    			assert.Equal(t, v1.NodeReady, updatedNode.Status.Conditions[len(updatedNode.Status.Conditions)-1].Type,
    				"NotReady should be last")
    			assert.Len(t, updatedNode.Status.Images, len(expectedImageList))
    			assert.True(t, apiequality.Semantic.DeepEqual(expectedNode, updatedNode), "%s", cmp.Diff(expectedNode, updatedNode))
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  5. cmd/server_test.go

    	c.Assert(err, nil)
    	// verify the status of the HTTP response.
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// retrieve the info of last modification time of the object from the response header.
    	lastModified := response.Header.Get("Last-Modified")
    	// Parse it into time.Time structure.
    	t, err := time.Parse(http.TimeFormat, lastModified)
    	c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    		// start of the relro segment in the file.  The PT_LOAD segments
    		// will be such that the last page of the text segment will be
    		// mapped twice, once r-x and once starting out rw- and, after
    		// relocation processing, changed to r--.
    		//
    		// Ideally the last page of the text segment would not be
    		// writable even for this short period.
    		va = uint64(Rnd(int64(va), *FlagRound))
    
    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. pkg/kubelet/kubelet.go

    	// Finally, put the most recent version of the config on the Kubelet, so
    	// people can see how it was configured.
    	klet.kubeletConfiguration = *kubeCfg
    
    	// Generating the status funcs should be the last thing we do,
    	// since this relies on the rest of the Kubelet having been constructed.
    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    			// there can be only one catch all egress listener with empty port, and it should be the last listener.
    			if egress.Port == nil {
    				if !catchAllEgressListenerFound {
    					if index == len(rule.Egress)-1 {
    						catchAllEgressListenerFound = true
    					} else {
    						errs = AppendValidation(errs, fmt.Errorf("sidecar: the egress listener with empty port should be the last listener in the list"))
    					}
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // Condition 1 - `start_index_map` should be an increasing sequence starting
    // from 0 with step 1.
    // Condition 2 - `index_vector_dim` should be the last dimension of
    // `start_indices`.
    // Condition 3 - `offset_dims` should be the last dimensions of `output`.
    // Condition 4 - shape of slice should be same with shape of input on the
    // offset dimensions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    	// Along with volumeToMount and actualStateOfWorld, the function expects current size of volume on the node as an argument. The current
    	// size here always refers to capacity last recorded in actualStateOfWorld from pvc.Status.Capacity
    	GenerateExpandInUseVolumeFunc(volumeToMount VolumeToMount, actualStateOfWorld ActualStateOfWorldMounterUpdater, currentSize resource.Quantity) (volumetypes.GeneratedOperations, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top