Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 662 for actioned (0.25 sec)

  1. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	}
    	d.finalizeNamespace(context.Background(), testNamespace)
    	actions := mockClient.Actions()
    	if len(actions) != 1 {
    		t.Errorf("Expected 1 mock client action, but got %v", len(actions))
    	}
    	if !actions[0].Matches("create", "namespaces") || actions[0].GetSubresource() != "finalize" {
    		t.Errorf("Expected finalize-namespace action %v", actions[0])
    	}
    	finalizers := actions[0].(core.CreateAction).GetObject().(*v1.Namespace).Spec.Finalizers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [[sec:configure_github_actions]]
    == Configure GitHub Actions
    
    You can create a GitHub Actions workflow by adding a `.github/workflows/<workflow-name>.yml` file to your repository.
    This workflow definition file contains all relevant instructions for building the project on GitHub Actions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cache/prog.go

    			return fmt.Errorf("short write writing body to GOCACHEPROG for action %x, object %x: wrote %v; expected %v",
    				req.ActionID, req.ObjectID, wrote, req.BodySize)
    		}
    		if _, err := c.bw.WriteString("\"\n"); err != nil {
    			return err
    		}
    	}
    	if err := c.bw.Flush(); err != nil {
    		return err
    	}
    	return nil
    }
    
    func (c *ProgCache) Get(a ActionID) (Entry, error) {
    	if !c.can[cmdGet] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/buildid.go

    	// the actionID half; if it also appeared in the input that would be like an
    	// engineered 120-bit partial SHA256 collision.
    	a.actionID = actionHash
    	actionID := buildid.HashToString(actionHash)
    	if a.json != nil {
    		a.json.ActionID = actionID
    	}
    	contentID := actionID // temporary placeholder, likely unique
    	a.buildID = actionID + buildIDSeparator + contentID
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

                builder.flush();
                client.prepareUpdate().setIndex(actualIndex).setId(id).setDocAsUpsert(true).setDoc(builder).execute()
                        .actionGet(settings.getIndexTimeout());
                client.admin().indices().prepareRefresh().setIndices(actualIndex).execute().actionGet(settings.getIndicesTimeout());
            } catch (final Exception e) {
                throw new SuggestSettingsException("Failed to add to array.", e);
            }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

    import org.dbflute.util.DfTypeUtil;
    import org.opensearch.action.DocWriteResponse.Result;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkRequestBuilder;
    import org.opensearch.action.bulk.BulkResponse;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.delete.DeleteResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. pkg/controller/resourcequota/resource_quota_controller_test.go

    		}
    
    		actionSet := sets.NewString()
    		for _, action := range kubeClient.Actions() {
    			actionSet.Insert(strings.Join([]string{action.GetVerb(), action.GetResource().Resource, action.GetSubresource()}, "-"))
    		}
    		if !actionSet.IsSuperset(testCase.expectedActionSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/Suggester.java

    import org.opensearch.action.admin.indices.alias.Alias;
    import org.opensearch.action.admin.indices.alias.IndicesAliasesRequestBuilder;
    import org.opensearch.action.admin.indices.alias.get.GetAliasesResponse;
    import org.opensearch.action.admin.indices.create.CreateIndexResponse;
    import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
    import org.opensearch.action.admin.indices.get.GetIndexResponse;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            given:
            def action = Mock(Action)
    
            when:
            gradle.projectsLoaded(action)
    
            and:
            gradle.buildListenerBroadcaster.projectsLoaded(gradle)
    
            then:
            1 * action.execute(gradle)
        }
    
        def "broadcasts projects evaluated events to actions"() {
            given:
            def action = Mock(Action)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. pkg/controller/volume/pvcprotection/pvc_protection_controller_test.go

    				}
    				// The test expected more to happen, wait for the actions.
    				// Most probably it's exponential backoff
    				time.Sleep(10 * time.Millisecond)
    				continue
    			}
    			break
    		}
    		actions := client.Actions()
    		for i, action := range actions {
    			if len(test.expectedActions) < i+1 {
    				t.Errorf("Test %q: %d unexpected actions: %+v", test.name, len(actions)-len(test.expectedActions), dump.Pretty(actions[i:]))
    				break
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 15.5K bytes
    - Viewed (0)
Back to top