Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for prepending (0.2 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <code>smb1://server/</code>,
     * <li> or <code>null</code> if the resource cannot be resolved.
     * </ul>
     *
     * @return A <code>String[]</code> array of files and directories,
     * workgroups, servers, or shares depending on the context of the
     * resource URL
     */
        public String[] list() throws SmbException {
            return list( "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null );
        }
    
    /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	if !runnable.Admit {
    		// Pod is not runnable; and update the Pod and Container statuses to why.
    		if apiPodStatus.Phase != v1.PodFailed && apiPodStatus.Phase != v1.PodSucceeded {
    			apiPodStatus.Phase = v1.PodPending
    		}
    		apiPodStatus.Reason = runnable.Reason
    		apiPodStatus.Message = runnable.Message
    		// Waiting containers are not creating.
    		const waitingReason = "Blocked"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    			sched.lastpoll.CompareAndSwap(lastpoll, now)
    			list, delta := netpoll(0) // non-blocking - returns list of goroutines
    			if !list.empty() {
    				// Need to decrement number of idle locked M's
    				// (pretending that one more is running) before injectglist.
    				// Otherwise it can lead to the following situation:
    				// injectglist grabs all P's but before it starts M's to run the P's,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    // included in the module zip files downloaded by 'go install'.)
    //
    // If the arguments don't have version suffixes, "go install" may run in
    // module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    // variable and the presence of a go.mod file. See 'go help modules' for details.
    // If module-aware mode is enabled, "go install" runs in the context of the main
    // module.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    	// with a name given on the command line, not an
    	// import. Anything listed on the command line is fine.
    	if importerPath == "" {
    		return nil
    	}
    
    	// Check for "internal" element: three cases depending on begin of string and/or end of string.
    	i, ok := findInternal(p.ImportPath)
    	if !ok {
    		return nil
    	}
    
    	// Internal is present.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Updates inputs to TPU embedding enqueue ops depending on whether graph is in training mode or in evaluation mode.";
    
      let description = [{
        Updates inputs to TPU embedding enqueue ops depending on whether graph
        is in training mode or in evaluation mode.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    from the value obtained by executing and rounding the instructions individually.
    An explicit floating-point type <a href="#Conversions">conversion</a> rounds to
    the precision of the target type, preventing fusion that would discard that rounding.
    </p>
    
    <p>
    For instance, some architectures provide a "fused multiply and add" (FMA) instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/popper.min.js.map

    placement.split('-')[0];\n\n  // Get popper node sizes\n  const popperRect = getOuterSizes(popper);\n\n  // Add position, width and height to our offsets object\n  const popperOffsets = {\n    width: popperRect.width,\n    height: popperRect.height,\n  };\n\n  // depending by the popper placement we have to compute its offsets slightly differently\n  const isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n  const mainSide = isHoriz ? 'top' : 'left';\n  const secondarySide = isHoriz ? 'left' : 'top';\n  const...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"setPlainStr":          "v1",
    				"setDefaultedStr":      "v2",
    				"setNullableStr":       "v3",
    				"setToNullNullableStr": nil,
    
    				// we don't run the defaulter in this test suite (depending on it would introduce a cycle)
    				// so we fake it :(
    				"unsetDefaultedStr": "default value",
    			},
    			schema: objectTypePtr(map[string]schema.Structural{
    				"unsetPlainStr":     stringType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    }
    
    // -----
    
    func.func @testConcatV2(%arg0: tensor<8x16xf32>, %arg1: tensor<8xf32>, %axis: tensor<i32>) -> tensor<*xf32> {
      // expected-error @+1 {{operand type 'tensor<8xf32>' is not compatible with preceding operands; expected rank: 2}}
      %0 = "tf.ConcatV2"(%arg0, %arg1, %axis) : (tensor<8x16xf32>, tensor<8xf32>, tensor<i32>) -> tensor<*xf32>
      func.return %0 : tensor<*xf32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
Back to top