Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for xoring (0.13 sec)

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

    	symmodu *obj.LSym
    )
    
    // Note about encoding: Prog.scond holds the condition encoding,
    // but XOR'ed with C_SCOND_XOR, so that C_SCOND_NONE == 0.
    // The code that shifts the value << 28 has the responsibility
    // for XORing with C_SCOND_XOR too.
    
    func checkSuffix(c *ctxt5, p *obj.Prog, o *Optab) {
    	if p.Scond&C_SBIT != 0 && o.scond&C_SBIT == 0 {
    		c.ctxt.Diag("invalid .S suffix: %v", p)
    	}
    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. src/runtime/mgc.go

    	// that go straight to black, and permagrey objects scanned by
    	// markroot during the concurrent scan phase. This is updated
    	// atomically during the cycle. Updates may be batched
    	// arbitrarily, since the value is only read at the end of the
    	// cycle.
    	//
    	// Because of benign races during marking, this number may not
    	// be the exact number of marked bytes, but it should be very
    	// close.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

      - Variant 'api' declares a component, as well as attribute 'custom' with value 'c1':
          - Incompatible because this component declares a component for use during compile-time and the consumer needed a component for use during runtime
      - Variant 'runtime' declares a component for use during runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            }
            return Collections.emptySet();
        }
    
        @Override
        public String toString() {
            return String.format("%s(%s)", component, metadata.getName());
        }
    
        public String getSimpleName() {
            return component.getId().toString();
        }
    
        public String getNameWithVariant() {
            return component.getId() + " variant " + metadata.getName();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. src/runtime/mgcpacer.go

    	// during this cycle. This is updated atomically, and must also
    	// be updated atomically even during a STW, because it is read
    	// by sysmon. Updates occur in bounded batches, since it is both
    	// written and read throughout the cycle.
    	assistTime atomic.Int64
    
    	// dedicatedMarkTime is the nanoseconds spent in dedicated mark workers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    		}
    		start = false
    	}
    }
    
    // funcNamePiecesForPrint returns the function name for printing to the user.
    // It returns three pieces so it doesn't need an allocation for string
    // concatenation.
    func funcNamePiecesForPrint(name string) (string, string, string) {
    	// Replace the shape name in generic function with "...".
    	i := bytealg.IndexByteString(name, '[')
    	if i < 0 {
    		return name, "", ""
    	}
    	j := len(name) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types.go

    	// the network identity of the set. Pods get DNS/hostnames that follow the
    	// pattern: pod-specific-string.serviceName.default.svc.cluster.local
    	// where "pod-specific-string" is managed by the StatefulSet controller.
    	ServiceName string `json:"serviceName" protobuf:"bytes,5,opt,name=serviceName"`
    
    	// podManagementPolicy controls how pods are created during initial scale up,
    	// when replacing pods on nodes, or when scaling down. The default policy is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// the network identity of the set. Pods get DNS/hostnames that follow the
    	// pattern: pod-specific-string.serviceName.default.svc.cluster.local
    	// where "pod-specific-string" is managed by the StatefulSet controller.
    	ServiceName string `json:"serviceName" protobuf:"bytes,5,opt,name=serviceName"`
    
    	// podManagementPolicy controls how pods are created during initial scale up,
    	// when replacing pods on nodes, or when scaling down. The default policy is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. common/scripts/metallb-native.yaml

        - jsonPath: .spec.ipAddressPools
          name: IPAddressPools
          type: string
        - jsonPath: .spec.ipAddressPoolSelectors
          name: IPAddressPool Selectors
          type: string
        - jsonPath: .spec.peers
          name: Peers
          type: string
        - jsonPath: .spec.nodeSelectors
          name: Node Selectors
          priority: 10
          type: string
        name: v1beta1
        schema:
          openAPIV3Schema:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	outputDir            *string
    	chatty               chattyFlag
    	count                *uint
    	coverProfile         *string
    	gocoverdir           *string
    	matchList            *string
    	match                *string
    	skip                 *string
    	memProfile           *string
    	memProfileRate       *int
    	cpuProfile           *string
    	blockProfile         *string
    	blockProfileRate     *int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top