Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 301 for iterations (0.28 sec)

  1. src/sync/atomic/doc.go

    //	*addr += delta
    //	return *addr
    //
    // The load and store operations, implemented by the LoadT and StoreT
    // functions, are the atomic equivalents of "return *addr" and
    // "*addr = val".
    //
    // In the terminology of [the Go memory model], if the effect of
    // an atomic operation A is observed by atomic operation B,
    // then A “synchronizes before” B.
    // Additionally, all the atomic operations executed in a program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/first-steps.md

    * `POST`: to create data.
    * `GET`: to read data.
    * `PUT`: to update data.
    * `DELETE`: to delete data.
    
    So, in OpenAPI, each of the HTTP methods is called an "operation".
    
    We are going to call them "**operations**" too.
    
    #### Define a *path operation decorator*
    
    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

    import org.gradle.internal.instantiation.InstantiationScheme;
    import org.gradle.internal.instantiation.InstantiatorFactory;
    import org.gradle.internal.operations.BuildOperationAncestryTracker;
    import org.gradle.internal.operations.BuildOperationListenerManager;
    import org.gradle.internal.properties.annotations.NestedBeanAnnotationHandler;
    import org.gradle.internal.properties.annotations.NoOpPropertyAnnotationHandler;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            } else {
              assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
            }
          } else {
            assertThat(numSuccessfulSetCalls.get()).isEqualTo(1);
          }
          // reset for next iteration
          numSuccessfulSetCalls.set(0);
          finalResults.clear();
        }
        executor.shutdown();
      }
    
      // setFuture and cancel() interact in more complicated ways than the other setters.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationMessagesTest.groovy

    import org.gradle.internal.logging.CollectingTestOutputEventListener
    import org.gradle.internal.logging.ConfigureLogging
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter
    import org.gradle.internal.operations.CurrentBuildOperationRef
    import org.gradle.internal.operations.OperationIdentifier
    import org.gradle.internal.problems.NoOpProblemDiagnosticsFactory
    import org.gradle.util.GradleVersion
    import org.junit.Rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

    import org.gradle.internal.jvm.inspection.JvmVersionDetector;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.logging.events.OutputEventListener;
    import org.gradle.internal.operations.CurrentBuildOperationRef;
    import org.gradle.internal.reflect.Instantiator;
    import org.gradle.internal.remote.MessagingServer;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableMap.java

         * than once. The iteration order of the returned map is the order in which entries were
         * inserted into the builder, unless {@link #orderEntriesByValue} was called, in which case
         * entries are sorted by value. If a key was added more than once, it appears in iteration order
         * based on the first time it was added, again unless {@link #orderEntriesByValue} was called.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

    import org.gradle.internal.nativeintegration.filesystem.FileSystem;
    import org.gradle.internal.operations.BuildOperationProgressEventEmitter;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.internal.operations.logging.BuildOperationLoggerFactory;
    import org.gradle.internal.operations.logging.DefaultBuildOperationLoggerFactory;
    import org.gradle.internal.reflect.Instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  9. pkg/kube/kclient/client.go

    // A delayed client is used for CRD watches when the CRD may or may not exist. When the CRD is not present, the client will return
    // empty results for all operations and watch for the CRD creation. Once created, watchers will be started and read operations will
    // begin returning results.
    // HasSynced will only return true if the CRD was not present upon creation OR the watch is fully synced. This ensures the creation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

         * not in {@link #nextElements}, this method throws an {@link UnknownElementException}.
         *
         * <p>This method is used when testing iterators without a known ordering. We poll the target
         * iterator's next element and pass it to the reference iterator through this method so it can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
Back to top