Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 369 for sget (0.25 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        result = Maps.fromProperties(testProp);
        assertEquals(4, result.size());
        assertEquals("true", result.get("first"));
        assertEquals("", result.get("test"));
        assertEquals("2", result.get("second"));
        assertEquals("item :   a short  phrase   ", result.get("Third"));
        assertFalse(result.containsKey("not here"));
    
        // Test loading system properties
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

                            log.debug("sessionSetup: " + this.credentials);
                        }
    
                        /*
                         * We explicitly set uid to 0 here to prevent a new
                         * SMB_COM_SESSION_SETUP_ANDX from having it's uid set to an
                         * old value when the session is re-established. Otherwise a
                         * "The parameter is incorrect" error can occur.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    }
    
    // Returns a set of integers that correspond to the tensorlist results in the
    // function.
    llvm::SmallSet<int, 4> GetTensorListResultsIndex(func::FuncOp func) {
      llvm::SmallSet<int, 4> set;
    
      for (const auto &result_and_idx :
           llvm::enumerate(func.getFunctionType().getResults())) {
        if (IsTensorListType(result_and_idx.value(), std::nullopt)) {
          set.insert(result_and_idx.index());
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	logger := klog.FromContext(ctx)
    	for k, v := range zoneToNodeConditions {
    		zoneSize.WithLabelValues(k).Set(float64(len(v)))
    		unhealthy, newState := nc.computeZoneStateFunc(v)
    		zoneHealth.WithLabelValues(k).Set(float64(100*(len(v)-unhealthy)) / float64(len(v)))
    		unhealthyNodes.WithLabelValues(k).Set(float64(unhealthy))
    		if newState != stateFullDisruption {
    			allAreFullyDisrupted = false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        Value device_cluster_result = std::get<0>(result);
        Value parallel_execute_result = std::get<1>(result);
        for (auto& use :
             llvm::make_early_inc_range(device_cluster_result.getUses()))
          if (!parallel_execute_op.getOperation()->isProperAncestor(use.getOwner()))
            use.set(parallel_execute_result);
      }
    }
    
    // Get the vector of results for new device cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    		claimClone.Spec.VolumeName = volume.Name
    
    		// Set AnnBoundByController if it is not set yet
    		if !metav1.HasAnnotation(claimClone.ObjectMeta, storagehelpers.AnnBoundByController) {
    			metav1.SetMetaDataAnnotation(&claimClone.ObjectMeta, storagehelpers.AnnBoundByController, "yes")
    		}
    	}
    
    	// Set AnnBindCompleted if it is not set yet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/jquery-3.6.3.min.js

    (){E.event.add(this,t,i,r,n)})}function Ee(e,i,o){o?(Y.set(e,i,!1),E.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(E.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:E.event.trigger(E.extend(r[0],E.Event.pr...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// where it might get shared by different plugins. But in practice,
    	// it is currently only used by dynamic provisioning and thus
    	// managed entirely here.
    	schedulingCtx *resourcev1alpha2.PodSchedulingContext
    
    	// selectedNode is set if (and only if) a node has been selected.
    	selectedNode *string
    
    	// potentialNodes is set if (and only if) the potential nodes field
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/proxier.go

    	// OTOH, we can immediately delete any stale affinity sets
    	existingSets, err := proxier.nftables.List(context.TODO(), "sets")
    	if err == nil {
    		for _, set := range existingSets {
    			if isAffinitySetName(set) && !activeAffinitySets.Has(set) {
    				tx.Delete(&knftables.Set{
    					Name: set,
    				})
    			}
    		}
    	} else if !knftables.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.js

    (){E.event.add(this,t,i,r,n)})}function Ee(e,i,o){o?(Y.set(e,i,!1),E.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(E.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:E.event.trigger(E.extend(r[0],E.Event.pr...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
Back to top