Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for aS (0.17 sec)

  1. guava/src/com/google/common/cache/LongAdder.java

       */
      @Override
      public void add(long x) {
        Cell[] as;
        long b, v;
        int[] hc;
        Cell a;
        int n;
        if ((as = cells) != null || !casBase(b = base, b + x)) {
          boolean uncontended = true;
          if ((hc = threadHashCode.get()) == null
              || as == null
              || (n = as.length) < 1
              || (a = as[(n - 1) & hc[0]]) == null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensions.kt

     *
     * @param group the group of the module to be added as a dependency.
     * @param name the name of the module to be added as a dependency.
     * @param version the optional version of the module to be added as a dependency.
     * @param configuration the optional configuration of the module to be added as a dependency.
     * @param classifier the optional classifier of the module artifact to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            1 * graph.getNodeValues(6, _, _) >> { args -> args[2] << 5 }
            _ * graph.getEdgeValues(_, _, _)
            0 * _._
    
            and:
            values == [[5, 6] as Set, [4] as Set, [1, 2, 3] as Set]
        }
    
        def canReuseWalkerForMultipleSearches() {
            when:
            walker.add(1)
            def values = walker.findValues()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. src/internal/types/testdata/spec/assignability.go

    		_ SendChan = C // ERRORx `cannot use C .* as SendChan value`
    		_ RecvChan = C // ERRORx `cannot use C .* as RecvChan value`
    		_ Chan     = C
    		_ Chan     = make /* ERRORx `cannot use make\(chan Basic\) .* as Chan value` */ (chan Basic)
    	)
    
    	var (
    		_ _CC = C // ERRORx `cannot use C .* as _CC value`
    		_ _SC = C // ERRORx `cannot use C .* as _SC value`
    		_ _RC = C // ERRORx `cannot use C .* as _RC value`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/obj7.go

    	} else {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	if source.Sym.Type == objabi.STLSBSS {
    		return
    	}
    	if source.Type != obj.TYPE_MEM {
    		c.ctxt.Diag("don't know how to handle %v with -dynlink", p)
    	}
    	p1 := obj.Appendp(p, c.newprog)
    	p2 := obj.Appendp(p1, c.newprog)
    	p1.As = AMOVD
    	p1.From.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

            annotation.value() == ['some-type'] as String[]
            annotation.classes() == [] as Class[]
        }
    
        def "loads class annotated with transformer names"() {
            expect:
            def cl = loader.loadClass(WithNamesSpecified.name)
            def annotation = cl.getAnnotation(classAnnotation)
            annotation.value() == ['some-type', 'some-other-type'] as String[]
            annotation.classes() == [] as Class[]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/ScalaPluginTest.groovy

            task instanceof ScalaCompile
            task.description == 'Compiles the main Scala source.'
            task.classpath.files as List == [mainSourceSet.java.destinationDirectory.get().asFile]
            task.source as List == mainSourceSet.scala  as List
            task dependsOn(JvmConstants.COMPILE_JAVA_TASK_NAME)
    
            def testTask = project.tasks['compileTestScala']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            expect:
            dynamicObject.hasMethod("m", [12] as Object[])
            !dynamicObject.hasMethod("m", [] as Object[])
            !dynamicObject.hasMethod("other", [12] as Object[])
            dynamicObject.hasMethod("overlap", [Integer] as Object[])
            dynamicObject.hasMethod("overlap", [0] as Object[])
            !dynamicObject.hasMethod("methodWithClass", [0] as Object[])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            def xmlAction = {} as Action<XmlProvider>
            model.classpath.file = xmlMerger
    
            when: "configure classpath"
            model.classpath({ cp -> cp.downloadJavadoc = true } as Action<EclipseClasspath>)
    
            then:
            model.classpath.downloadJavadoc
    
            when: "configure classpath file"
            model.classpath.file({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top