Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 241 for Option (0.12 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    				enc := uint32(c.instoffset)
    				if f.enc == enc {
    					mbop = enc
    					break
    				}
    			}
    		case C_NONE:
    			mbop = 0xf
    		}
    
    		if mbop == 0 {
    			c.ctxt.Diag("illegal mb option:\n%v", p)
    		}
    		o1 |= mbop
    	}
    
    	out[0] = o1
    	out[1] = o2
    	out[2] = o3
    	out[3] = o4
    	out[4] = o5
    	out[5] = o6
    }
    
    func (c *ctxt5) movxt(p *obj.Prog) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	for _, field := range fieldsPass {
    		for _, action := range actions {
    			options := &metainternalversion.ListOptions{FieldSelector: field.AsSelector(), ResourceVersion: "1"}
    			watcher, err := t.storage.(rest.Watcher).Watch(ctx, options)
    			if err != nil {
    				t.Errorf("unexpected error: %v, %v", err, action)
    			}
    
    			if err := emitFn(obj, action); err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            0 * action._
        }
    
        def "can add action to execute only when object added"() {
            def action = Mock(Action)
    
            addToContainer(c)
    
            when:
            container.whenObjectAdded(action)
    
            then:
            // Does not fire for existing elements
            0 * action._
    
            when:
            addToContainer(a)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

    .requiresSummary caption a:hover, .packagesSummary caption a:hover, .providesSummary caption a:hover,
    .usesSummary caption a:hover,
    .overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active,
    .constantsSummary caption a:active, .deprecatedSummary caption a:active,
    .requiresSummary caption a:active, .packagesSummary caption a:active, .providesSummary caption a:active,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            def action = Mock(Action)
    
            given:
            registry
                .register("foo") { it.unmanaged(new Bean(), action) }
                .configure(ModelActionRole.Defaults) { it.path("foo").type(Bean).action(action) }
                .configure(ModelActionRole.Initialize) { it.path("foo").type(Bean).action(action) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

                  }
                ]
              },
              "unit": "bytes"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = appendIf(actions, action{"LIST", resourcePath, resourceParams, namer, false}, isLister)
    		actions = appendIf(actions, action{"POST", resourcePath, resourceParams, namer, false}, isCreater)
    		actions = appendIf(actions, action{"DELETECOLLECTION", resourcePath, resourceParams, namer, false}, isCollectionDeleter)
    		// DEPRECATED in 1.11
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                  }
                ]
              },
              "unit": "short"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
        @Override
        public void allprojects(Action<? super Project> action) {
            allprojects(this, action);
        }
    
        @Override
        public void allprojects(ProjectInternal referrer, Action<? super Project> action) {
            getProjectConfigurator().allprojects(getCrossProjectModelAccess().getAllprojects(referrer, this), action);
        }
    
        @Override
        public Set<Project> getSubprojects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/options_test.go

    	cpoptions "k8s.io/cloud-provider/options"
    	componentbaseconfig "k8s.io/component-base/config"
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/metrics"
    	cmconfig "k8s.io/controller-manager/config"
    	cmoptions "k8s.io/controller-manager/options"
    	migration "k8s.io/controller-manager/pkg/leadermigration/options"
    	netutils "k8s.io/utils/net"
    
    	clientgofeaturegate "k8s.io/client-go/features"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top