Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 171 for step2 (0.11 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/FlexiblePorterStemFilterFactory.java

            super(indexSettings, name, settings);
    
            step1 = settings.getAsBoolean("step1", true);
            step2 = settings.getAsBoolean("step2", true);
            step3 = settings.getAsBoolean("step3", true);
            step4 = settings.getAsBoolean("step4", true);
            step5 = settings.getAsBoolean("step5", true);
            step6 = settings.getAsBoolean("step6", true);
        }
    
        @Override
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/first-steps.md

    # Security - First Steps
    
    Let's imagine that you have your **backend** API in some domain.
    
    And you have a **frontend** in another domain or in a different path of the same domain (or in a mobile application).
    
    And you want to have a way for the frontend to authenticate with the backend, using a **username** and **password**.
    
    We can use **OAuth2** to build that with **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/watcher_test.go

    		{deleted: cm},
    		{added: cm},
    	}
    
    	for i, step := range steps {
    		t.Run(fmt.Sprintf("[%v]", i), func(t *testing.T) {
    			g := NewWithT(t)
    
    			switch {
    			case step.added != nil:
    				_, err := cms.Create(context.TODO(), step.added, metav1.CreateOptions{})
    				g.Expect(err).Should(BeNil())
    			case step.updated != nil:
    				_, err := cms.Update(context.TODO(), step.updated, metav1.UpdateOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. .github/workflows/mint.yml

              TAG="quay.io/minio/minio:${{ steps.vars.outputs.sha_short }}" make docker
    
          - name: multipart uploads test
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/multipart/migrate.sh "${{ steps.vars.outputs.sha_short }}"
    
          - name: compress and encrypt
            run: |
              ${GITHUB_WORKSPACE}/.github/workflows/run-mint.sh "compress-encrypt" "minio" "minio123" "${{ steps.vars.outputs.sha_short }}"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/src/main/kotlin/org/gradle/declarative/dsl/tooling/builders/DeclarativeSchemaModelBuilder.kt

            steps.map { step ->
                val evaluationSchema = step.evaluationSchemaForStep
                val analysisOnlySchema = DefaultEvaluationSchema(evaluationSchema.analysisSchema, evaluationSchema.analysisStatementFilter)
                SimpleInterpretationSequenceStep(step.stepIdentifier, step.features) { analysisOnlySchema }
            }
        )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureNonIncrementalStateBeforeExecutionStepTest.groovy

     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.internal.execution.UnitOfWork
    
    class CaptureNonIncrementalStateBeforeExecutionStepTest extends AbstractCaptureStateBeforeExecutionStepTest<PreviousExecutionContext> {
    
        AbstractCaptureStateBeforeExecutionStep<PreviousExecutionContext, CachingResult> step
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/security/first-steps.md

    Joshua Hanson <******@****.***> 1710356539 -0600
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

    public class TimeoutStep<C extends Context, R extends Result> implements Step<C, R> {
    
        private final TimeoutHandler timeoutHandler;
        private final CurrentBuildOperationRef currentBuildOperationRef;
        private final Step<? super C, ? extends R> delegate;
    
        public TimeoutStep(
            TimeoutHandler timeoutHandler,
            CurrentBuildOperationRef currentBuildOperationRef,
            Step<? super C, ? extends R> delegate
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    import com.google.common.collect.ImmutableList
    import com.google.common.collect.ImmutableSortedMap
    import org.gradle.caching.internal.origin.OriginMetadata
    import org.gradle.internal.Try
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top