Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 153 for gives (0.06 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // user object is implemented with bugs similar to the user object.
          builder.append("Exception thrown from implementation: ").append(e.getClass());
        }
      }
    
      /**
       * Submits the given runnable to the given {@link Executor} catching and logging all {@linkplain
       * RuntimeException runtime exceptions} thrown by the executor.
       */
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  2. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          // user object is implemented with bugs similar to the user object.
          builder.append("Exception thrown from implementation: ").append(e.getClass());
        }
      }
    
      /**
       * Submits the given runnable to the given {@link Executor} catching and logging all {@linkplain
       * RuntimeException runtime exceptions} thrown by the executor.
       */
      @SuppressWarnings("CatchingUnchecked") // sneaky checked exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  3. cmd/iam.go

    // policies applicable to the STS credential are associated with this "virtual"
    // parent.
    //
    // When a policyName is given to this function, the policy association is
    // created and stored in the IAM store. Thus, it should NOT be given for the
    // role-arn case (because the role-to-policy mapping is separately stored
    // elsewhere), the AssumeRole case (because the parent user is real and their
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    	return status
    }
    
    // RunFilterPlugins runs the set of configured Filter plugins for pod on
    // the given node. If any of these plugins doesn't return "Success", the
    // given node is not suitable for running pod.
    // Meanwhile, the failure message and status are set for the given node.
    func (f *frameworkImpl) RunFilterPlugins(
    	ctx context.Context,
    	state *framework.CycleState,
    	pod *v1.Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    func (ctrl *PersistentVolumeController) getProvisionedVolumeNameForClaim(claim *v1.PersistentVolumeClaim) string {
    	return "pvc-" + string(claim.UID)
    }
    
    // scheduleOperation starts given asynchronous operation on given volume. It
    // makes sure the operation is already not running.
    func (ctrl *PersistentVolumeController) scheduleOperation(logger klog.Logger, operationName string, operation func() error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. src/go/build/build.go

    		}
    		break
    	}
    
    	word = data[:len(data)-len(rest)]
    	if len(word) == 0 {
    		return nil, nil
    	}
    
    	return word, rest
    }
    
    // MatchFile reports whether the file with the given name in the given directory
    // matches the context and would be included in a [Package] created by [ImportDir]
    // of that directory.
    //
    // MatchFile considers the name of the file and may use ctxt.OpenFile to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            taskTypeLogsInputFileCollectionContent()
            buildFile << """
                task resolve(type: ShowFilesTask) {
                    inFiles.from(configurations.implementation)
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
            configurationCacheRun(":resolve")
    
            then: // everything is up-to-date
            configurationCache.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    namespace {
    // Returns a TF_CastOp to I32. This function is used for CastOps that are
    // intermediate nodes in a TableGen pattern result. In such a case, the
    // destination type is not inferred and must be given explicitly.
    //
    // Preconditions: The given value must have a ShapedType.
    static Value CreateTFCastOpI32(OpBuilder *builder, Location loc, Value x,
                                   BoolAttr truncate) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    // makes it easy to use those data structures as a SchedulingQueue.
    type SchedulingQueue interface {
    	framework.PodNominator
    	Add(logger klog.Logger, pod *v1.Pod) error
    	// Activate moves the given pods to activeQ iff they're in unschedulablePods or backoffQ.
    	// The passed-in pods are originally compiled from plugins that want to activate Pods,
    	// by injecting the pods through a reserved CycleState struct (PodsToActivate).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    func isARMImmRot(v uint32) bool {
    	for i := 0; i < 16; i++ {
    		if v&^0xff == 0 {
    			return true
    		}
    		v = v<<2 | v>>30
    	}
    
    	return false
    }
    
    // overlap reports whether the ranges given by the given offset and
    // size pairs overlap.
    func overlap(offset1, size1, offset2, size2 int64) bool {
    	if offset1 >= offset2 && offset2+size2 > offset1 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top