Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 174 for synthetic (0.13 sec)

  1. src/crypto/md5/md5block_arm.s

    #define Rd	R5	// MD5 accumulator
    #define Rc0	R6	// MD5 constant
    #define Rc1	R7	// MD5 constant
    #define Rc2	R8	// MD5 constant
    // r9, r10 are forbidden
    // r11 is OK provided you check the assembler that no synthetic instructions use it
    #define Rc3	R11	// MD5 constant
    #define Rt0	R12	// temporary
    #define Rt1	R14	// temporary
    
    // func block(dig *digest, p []byte)
    // 0(FP) is *digest
    // 4(FP) is p.array (struct Slice)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. src/go/types/named.go

    // identical. On the other hand, multiple instantiated Named types may be
    // identical even though their pointers are not identical. One has to use
    // Identical to compare them. For instantiated named types, their obj is a
    // synthetic placeholder that records their position of the corresponding
    // instantiation in the source (if they were constructed during type checking).
    //
    // To prevent infinite expansion of named instances that are created outside of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

            if (ruleMethod.getTypeParameters().length > 0) {
                problems.add(ruleMethod, "Cannot have type variables (i.e. cannot be a generic method)");
            }
    
            // TODO validations on method: synthetic, bridge methods, varargs, abstract, native
            ModelType<?> returnType = ModelType.returnType(ruleMethod);
            if (returnType.isRawClassOfParameterizedType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/asm.go

    			// a new R_ADDR relocation which will be resolved in
    			// the 'reloc' phase.
    			//
    			// These synthetic static R_ADDR relocs must be skipped
    			// now, or else we will be caught in an infinite loop
    			// of generating synthetic relocs for our synthetic
    			// relocs.
    			//
    			// Furthermore, the rela sections contain dynamic
    			// relocations with R_ADDR relocations on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * despite the @IgnoreJRERequirement annotation there. My assumption is that, because javac
       * generates a synthetic method for the body of the lambda, the actual method calls that Animal
       * Sniffer is flagging don't appear inside toImmutableSortedMultiset but rather inside that
       * synthetic method. By moving those calls to a named method, we're able to apply
       * @IgnoreJRERequirement somewhere that it will help.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			Protocol: string(p.Protocol),
    			// TODO: target port
    		})
    	}
    
    	cfg := &config.Config{
    		Meta: config.Meta{
    			GroupVersionKind:  gvk,
    			Name:              "synthetic-" + svc.Attributes.Name,
    			Namespace:         svc.Attributes.Namespace,
    			CreationTimestamp: svc.CreationTime,
    			ResourceVersion:   svc.ResourceVersion,
    		},
    		Spec: se,
    	}
    
    	// TODO: WorkloadSelector
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    type WebListInstruction struct {
    	NewBlock     bool // Insert marker that indicates separation from previous block
    	Flat         string
    	Cumulative   string
    	Synthetic    bool
    	Address      uint64
    	Disasm       string
    	FileLine     string
    	InlinedCalls []WebListCall
    }
    
    // WebListCall holds the per-inlined-call information for HTML source code listing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top