Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 214 for gives (0.17 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	if _, ok := node.Labels[labelNodeDisruptionExclusion]; ok {
    		return true
    	}
    	return false
    }
    
    // tryUpdateNodeHealth checks a given node's conditions and tries to update it. Returns grace period to
    // which given node is entitled, state of current and last observed Ready Condition, and an error if it occurred.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    // are supported via this interface.
    type ClientSessionCache interface {
    	// Get searches for a ClientSessionState associated with the given key.
    	// On return, ok is true if one was found.
    	Get(sessionKey string) (session *ClientSessionState, ok bool)
    
    	// Put adds the ClientSessionState to the cache with the given key. It might
    	// get called multiple times in a connection if a TLS 1.3 server provides
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    // the tests to run. If the filter is not given all tests are executed.
    GTEST_DECLARE_string_(filter);
    
    // This flag causes the Google Test to list tests. None of the tests listed
    // are actually run if the flag is provided.
    GTEST_DECLARE_bool_(list_tests);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. 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)
Back to top