Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 360 for outReg (0.17 sec)

  1. src/crypto/hmac/hmac.go

    			panic(err)
    		}
    	} else {
    		h.outer.Reset()
    		h.outer.Write(h.opad)
    	}
    	h.outer.Write(in[origLen:])
    	return h.outer.Sum(in[:origLen])
    }
    
    func (h *hmac) Write(p []byte) (n int, err error) {
    	return h.inner.Write(p)
    }
    
    func (h *hmac) Size() int      { return h.outer.Size() }
    func (h *hmac) BlockSize() int { return h.inner.BlockSize() }
    
    func (h *hmac) Reset() {
    	if h.marshaled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		// symbol and the outer end up in the same section).
    		for _, s := range relro {
    			if outer := ldr.OuterSym(s); outer != 0 {
    				st := state.symType(s)
    				ost := state.symType(outer)
    				if st != ost {
    					state.ctxt.Errorf(s, "inconsistent types for symbol and its Outer %s (%v != %v)",
    						ldr.SymName(outer), st, ost)
    				}
    			}
    		}
    
    		state.data[symnro] = ro
    		state.data[symnrelro] = relro
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/ssa/likelyadjust.go

    }
    
    // outerinner records that outer contains inner
    func (sdom SparseTree) outerinner(outer, inner *loop) {
    	// There could be other outer loops found in some random order,
    	// locate the new outer loop appropriately among them.
    
    	// Outer loop headers dominate inner loop headers.
    	// Use this to put the "new" "outer" loop in the right place.
    	oldouter := inner.outer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

                   $modifier class Inner {
                      public void foo() {}
                   }
                }
            """
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$Inner']
            def extractedOuter = api.extractAndLoadApiClassFrom(outer)
            def extractedInner = api.extractAndLoadApiClassFrom(inner)
    
            then:
            inner.clazz.getDeclaredMethod('foo').modifiers == Modifier.PUBLIC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields_test.go

    )
    
    func TestLookupPtrToStruct(t *testing.T) {
    	type Elem struct {
    		Key   string
    		Value string
    	}
    	type Outer struct {
    		Inner []Elem `json:"inner" patchStrategy:"merge" patchMergeKey:"key"`
    	}
    	outer := &Outer{}
    	elemType, patchStrategies, patchMergeKey, err := LookupPatchMetadataForStruct(reflect.TypeOf(outer), "inner")
    	if err != nil {
    		t.Fatal(err)
    	}
    	if elemType != reflect.TypeOf([]Elem{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 20 22:35:14 UTC 2017
    - 769 bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/CustomLambdasTest.kt

        private
        fun applyToOuter(code: String): Outer {
            val reflection = schema.reflect(code)
    
            val outer = Outer()
            val converter = DeclarativeReflectionToObjectConverter(
                emptyMap(), outer, MemberFunctionResolver(functionalLambdaHandler), ReflectionRuntimePropertyResolver, RuntimeCustomAccessors.none
            )
            converter.apply(reflection)
    
            return outer
        }
    }
    
    
    class Outer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_tf_xla_op_to_tf_op.cc

          c++;
        }
      }
    
      // Create out_eq by merging lhs and rhs.
      // In XlaDotv2 style - batch dim - leftover from lhs - leftover from rhs.
      for (const char c : lhs_batch_dims) {
        absl::StrAppend(&out_eq, std::string(1, c));
      }
      for (const char c : lhs_eq) {
        if (!absl::StrContains(out_eq, c) && !absl::StrContains(rhs_eq, c)) {
          absl::StrAppend(&out_eq, std::string(1, c));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/testing/panic_test.go

    	if t.Name() == *testPanicTest {
    		panic("panic")
    	}
    	switch *testPanicCleanupPanic {
    	case "", "outer", "middle", "inner":
    	default:
    		t.Fatalf("bad -test_panic_cleanup_panic: %s", *testPanicCleanupPanic)
    	}
    	t.Cleanup(func() {
    		fmt.Println("ran outer cleanup")
    		if *testPanicCleanupPanic == "outer" {
    			panic("outer cleanup")
    		}
    	})
    	for i := 0; i < 3; i++ {
    		i := i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:49:24 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-groovy/src/integTest/groovy/org/gradle/model/dsl/internal/transform/NestedModelRuleDslDetectionIntegrationTest.groovy

    model {
        thing {
            conf {
                println "outer 1"
            }
            someProp.conf {
                println "outer 2"
                // not a rule
                conf { println "inner 1" }
            }
        }
        tasks {
            show(Task) { doLast { println $.thing } }
        }
    }
    '''
    
            expect:
            succeeds "show"
            output.contains("outer 1")
            output.contains("outer 2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

     *
     * Inner classes are included because they are accessible from a value of the outer class. For example:
     *
     * ```
     * class Outer {
     *     inner class Inner
     * }
     *
     * fun foo() {
     *     val outer = Outer()
     *     outer.Inner()
     * }
     * ```
     *
     * While Kotlin always expects a constructor call when accessing `outer.Inner`, it nonetheless requires inner classes to be contained in
     * non-static scopes.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top