Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for barmod (0.42 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultRepositoryContentDescriptorTest.groovy

            when:
            details.moduleId >> barMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(barMod, '1.0')
            action.execute(details)
    
            then:
            1 * details.notFound()
    
            when:
            details.moduleId >> bazMod
            details.componentId >> DefaultModuleComponentIdentifier.newId(bazMod, '1.0')
            action.execute(details)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          List<Entry<Object, Object>> warmed = warmUp(cache);
          for (int i = WARMUP_MIN; i < WARMUP_MAX; i++) {
            Entry<Object, Object> entry = warmed.get(i - WARMUP_MIN);
            Object newValue = new Object();
            assertSame(entry.getValue(), cache.asMap().put(entry.getKey(), newValue));
            // don't let the new entry get GCed
            warmed.add(entryOf(entry.getKey(), newValue));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/crypto/rsa/rsa.go

    	}
    
    	var (
    		err  error
    		m, c *bigmod.Nat
    		N    *bigmod.Modulus
    		t0   = bigmod.NewNat()
    	)
    	if priv.Precomputed.n == nil {
    		N, err = bigmod.NewModulusFromBig(priv.N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		c, err = bigmod.NewNat().SetBytes(ciphertext, N)
    		if err != nil {
    			return nil, ErrDecryption
    		}
    		m = bigmod.NewNat().Exp(c, priv.D.Bytes(), N)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    	}
    
    	// SEC 1, Version 2.0, Section 4.1.4
    
    	r, err := bigmod.NewNat().SetBytes(rBytes, c.N)
    	if err != nil || r.IsZero() == 1 {
    		return false
    	}
    	s, err := bigmod.NewNat().SetBytes(sBytes, c.N)
    	if err != nil || s.IsZero() == 1 {
    		return false
    	}
    
    	e := bigmod.NewNat()
    	hashToNat(c, e, hash)
    
    	// w = s⁻¹
    	w := bigmod.NewNat()
    	inverse(c, w, s)
    
    	// p₁ = [e * s⁻¹]G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseProjectIntegrationTest.groovy

          }
        }
        resourceFilter {
          appliesTo = 'FILES_AND_FOLDERS'
          type = 'EXCLUDE_ALL'
          matcher {
            id = 'org.eclipse.some.custom.matcher'
            arguments = 'barfoo'
          }
        }
      }
    }
            """
            when:
            run("eclipse")
            then:
    
            def resourceFilterXml = '''
            <filteredResources>
                    <filter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

      name: foobar
    - cluster:
        certificate-authority: {{ .CA }}
        server: https://authz.example.com
      name: barfoo
    users:
    - name: a name
      user:
        client-certificate: {{ .Cert }}
        client-key: {{ .Key }}
    contexts:
    - name: default
      context:
        cluster: barfoo
        user: a name
    current-context: default
    `,
    			wantErr: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/BuildScriptCompileAvoidanceIntegrationTest.kt

                "bar",
                """
                fun bar() = "foo"
                """,
                multifileAnnotations
            )
            configureProject().assertBuildScriptCompilationAvoided().assertOutputContains("barfoo")
        }
    
        @Test
        fun `recompiles buildscript when inline function changes in multifile class in buildSrc`() {
            val multifileAnnotations = """
                @file:JvmName("Utils")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Sep 24 17:45:42 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/helpers_test.go

    type foo struct {
    	foo int
    }
    type bar struct {
    	str    string
    	strptr *string
    
    	ints      []int
    	stringMap map[string]string
    
    	foo    foo
    	fooptr *foo
    
    	bars   []foo
    	barMap map[string]foo
    
    	skipRecurseStruct  foo
    	skipRecursePointer *foo
    	skipRecurseList1   []foo
    	skipRecurseList2   []foo
    	skipRecurseMap1    map[string]foo
    	skipRecurseMap2    map[string]foo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo_test.go

    	}
    
    	buildModes := []string{"pie", "exe"}
    	if testenv.HasCGO() {
    		buildModes = append(buildModes, "c-shared")
    	}
    
    	// Keep in sync with src/cmd/go/internal/work/init.go:buildModeInit.
    	badmode := func(goos, goarch, buildmode string) string {
    		return fmt.Sprintf("-buildmode=%s not supported on %s/%s", buildmode, goos, goarch)
    	}
    
    	buildWithModules := func(t *testing.T, goos, goarch, buildmode string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

                    "FooBar" : dependentClasses([] as Set, ["BarFoo"] as Set),
                    "X" : dependentClasses([] as Set, ["Y"] as Set),
                ]))
            )
    
            when:
            def deps = a.findTransitiveDependents(["Foo"], [:])
    
            then:
            deps.getAccessibleDependentClasses() == ["Bar", "FooBar", "BarFoo"] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top