Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,061 for addCell (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/internal/DefaultActionConfiguration.java

        private final List<Object> params = new ArrayList<>();
    
        @Override
        public void params(Object... params) {
            Collections.addAll(this.params, params);
        }
    
        @Override
        public void setParams(Object... params) {
            this.params.clear();
            Collections.addAll(this.params, params);
        }
    
        @Override
        public Object[] getParams() {
            return this.params.toArray();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile_test.go

    		s.Set(AttrContentAddressable, true)
    		s.PkgIdx = goobj.PkgIdxHashed
    	}
    	// s3 references s0
    	r := Addrel(syms[3])
    	r.Sym = syms[0]
    	// s4 references s0
    	r = Addrel(syms[4])
    	r.Sym = syms[0]
    	// s5 references s1
    	r = Addrel(syms[5])
    	r.Sym = syms[1]
    	// s6 references s2
    	r = Addrel(syms[6])
    	r.Sym = syms[2]
    
    	// compute hashes
    	h := make([]goobj.HashType, len(syms))
    	w := &writer{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/cpp/basic/kotlin/build.gradle.kts

        // Define a preprocessor macro for every binary
        macros.put("NDEBUG", null)
    
        // Define a compiler options
        compilerArgs.add("-W3")
    
        // Define toolchain-specific compiler options
        compilerArgs.addAll(toolChain.map { toolChain ->
            when (toolChain) {
                is Gcc, is Clang -> listOf("-O2", "-fno-access-control")
                is VisualCpp -> listOf("/Zi")
                else -> listOf()
            }
        })
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/net/rpc/jsonrpc/all_test.go

    	args = &Args{7, 8}
    	mulReply := new(Reply)
    	mulCall := client.Go("Arith.Mul", args, mulReply, nil)
    	addReply := new(Reply)
    	addCall := client.Go("Arith.Add", args, addReply, nil)
    
    	addCall = <-addCall.Done
    	if addCall.Error != nil {
    		t.Errorf("Add: expected no error but got string %q", addCall.Error.Error())
    	}
    	if addReply.C != args.A+args.B {
    		t.Errorf("Add: got %d expected %d", addReply.C, args.A+args.B)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:09:53 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultTaskTest.groovy

            thrown(InvalidUserDataException)
        }
    
        def "addAll null to actions throws"() {
            when:
            defaultTask.actions.addAll((Collection) null)
    
            then:
            thrown(InvalidUserDataException)
        }
    
        def "addAll null to actions with index throws"() {
            when:
            defaultTask.actions.addAll(0, null)
    
            then:
            thrown(InvalidUserDataException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractRangeSet.java

        for (Range<C> range : ranges) {
          if (!encloses(range)) {
            return false;
          }
        }
        return true;
      }
    
      @Override
      public void addAll(RangeSet<C> other) {
        addAll(other.asRanges());
      }
    
      @Override
      public void addAll(Iterable<Range<C>> ranges) {
        for (Range<C> range : ranges) {
          add(range);
        }
      }
    
      @Override
      public void removeAll(RangeSet<C> other) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/compilerapi/deps/DependentsSet.java

            for (DependentsSet set : sets) {
                privateDependentClasses.addAll(set.getPrivateDependentClasses());
                accessibleDependentClasses.addAll(set.getAccessibleDependentClasses());
                dependentResources.addAll(set.getDependentResources());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtSourceModuleBuilder.kt

        }
    
        public fun addSourceRoots(paths: Collection<Path>) {
            sourceRoots.addAll(paths)
        }
    
        public fun addSourceVirtualFile(virtualFile: VirtualFile) {
            sourceVirtualFiles.add(virtualFile)
        }
    
        public fun addSourceVirtualFiles(virtualFiles: Collection<VirtualFile>) {
            sourceVirtualFiles.addAll(virtualFiles)
        }
    
        override fun build(): KtSourceModule {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                  @Override
                  public NavigableSet<String> create(String[] elements) {
                    NavigableSet<String> innerSet = new TreeSet<>();
                    Collections.addAll(innerSet, elements);
                    return Collections.checkedNavigableSet(innerSet, String.class);
                  }
                })
            .named("checkedNavigableSet/TreeSet, natural")
            .withFeatures(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingList.java

     * methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change the
     * behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code addAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardAddAll} method.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top