Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 945 for Action (0.3 sec)

  1. internal/bucket/lifecycle/lifecycle_test.go

    	evt := lc.eval(obj1, now)
    	if evt.Action != TransitionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionAction, evt.Action)
    	}
    	if evt.StorageClass != "TIER-1" {
    		t.Fatalf("Expected TIER-1 but got %s", evt.StorageClass)
    	}
    
    	evt = lc.eval(obj2, now)
    	if evt.Action != TransitionVersionAction {
    		t.Fatalf("Expected action: %s but got %s", TransitionVersionAction, evt.Action)
    	}
    	if evt.StorageClass != "TIER-2" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 06:41:22 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. .bazelrc

    build:cuda_clang_official --config=cuda_clang
    build:cuda_clang_official --action_env=TF_CUDA_VERSION="12"
    build:cuda_clang_official --action_env=TF_CUDNN_VERSION="8"
    build:cuda_clang_official --action_env=CUDA_TOOLKIT_PATH="/usr/local/cuda-12.3"
    build:cuda_clang_official --action_env=GCC_HOST_COMPILER_PATH="/dt9/usr/bin/gcc"
    build:cuda_clang_official --action_env=CLANG_CUDA_COMPILER_PATH="/usr/lib/llvm-17/bin/clang"
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Apr 24 20:50:35 GMT 2024
    - 52.6K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    import org.lastaflute.web.util.LaRequestUtil;
    import org.opensearch.OpenSearchException;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.update.UpdateRequestBuilder;
    import org.opensearch.action.update.UpdateResponse;
    import org.opensearch.common.document.DocumentField;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users_test.go

    	policyBytes := []byte(`{
     "Version": "2012-10-17",
     "Statement": [
      {
       "Effect": "Deny",
       "Action": [
        "admin:CreateServiceAccount"
       ]
      }
     ]
    }`)
    
    	newPolicyBytes := []byte(`{
     "Version": "2012-10-17",
     "Statement": [
      {
       "Effect": "Allow",
       "Action": [
        "s3:ListBucket"
       ],
       "Resource": [
        "arn:aws:s3:::testbucket/*"
       ]
      }
     ]
    }`)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Feb 12 16:36:16 GMT 2024
    - 45.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

            }
        }
    
        public static OptionalEntity<SynonymItem> createSynonymItem(final FessBaseAction action, final CreateForm form,
                final VaErrorHook hook) {
            return getEntity(form).map(entity -> {
                final String[] newInputs = splitLine(form.inputs);
                validateSynonymString(action, newInputs, "inputs", hook);
                entity.setNewInputs(newInputs);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  6. .github/workflows/arm-ci.yml

    permissions:
      contents: read
    
    jobs:
      build:
        # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
        if: github.repository == 'tensorflow/tensorflow' && (github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'kokoro:force-run'))
        runs-on: [self-hosted, linux, ARM64]
        strategy:
          matrix:
            pyver: ['3.10']
        steps:
    Others
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Feb 07 17:41:21 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  7. istioctl/pkg/wait/wait_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			fc := k.Dynamic().(*dynamicfake.FakeDynamicClient)
    			fc.PrependWatchReactor("*", func(action clienttesting.Action) (handled bool, ret watch.Interface, err error) {
    				gvr := action.GetResource()
    				ns := action.GetNamespace()
    				watch, err := fc.Tracker().Watch(gvr, ns)
    				if err != nil {
    					return false, nil, err
    				}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.optional.OptionalEntity;
    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public abstract class BsRoleBhv extends EsAbstractBehavior<Role, RoleCB> {
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
Back to top