Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 74 for setFoo (0.13 sec)

  1. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            then:
            assert newIsolatables.every { it instanceof IsolatedManagedValue }
    
            and:
            newIsolatables[0].isolate().getFoo() == "bar"
            newIsolatables[1].isolate().getFoo() == "baz"
        }
    
        def "can serialize/deserialize generated immutable Managed values"() {
            def instantiator = TestUtil.objectInstantiator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

                logger.debug("Set suggest settings. {} key: {} value: {}", settingsIndexName, key, value);
            }
            try {
                client.prepareUpdate().setIndex(settingsIndexName).setId(settingsId).setDocAsUpsert(true).setDoc(key, value)
                        .setRetryOnConflict(5).execute().actionGet(getIndexTimeout());
                client.admin().indices().prepareRefresh().setIndices(settingsIndexName).execute().actionGet(getIndicesTimeout());
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                        getId().convention("<no id>");
                    }
    
                    @Restricted
                    public abstract Property<String> getId();
    
                    public Foo getFoo() {
                        return foo;
                    }
    
                    @Configuring
                    public void foo(Action<? super Foo> action) {
                        action.execute(foo);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojo.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojo implements Mojo, ContextEnabled { private logging.Log log; private java.util.Map pluginContext; public void AbstractMojo(); public void setLog(logging.Log); public logging.Log getLog(); public java.util.Map getPluginContext(); public void setPluginContext(java.util.Map); } org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            return useReactor;
        }
    
        /** @deprecated use {@link #setPom(File)} */
        @Deprecated
        public MavenExecutionRequest setPomFile(String pomFilename) {
            if (pomFilename != null) {
                pom = new File(pomFilename);
            }
    
            return this;
        }
    
        @Override
        public MavenExecutionRequest setPom(File pom) {
            this.pom = pom;
    
            return this;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

        absl::Span<const std::string> inputs,
        absl::Span<
            const std::pair<std::string, FunctionDefHelper::AttrValueWrapper>>
            attrs) {
      NodeDef node;
      node.set_name(std::string(name));
      node.set_op(std::string(op));
      for (const auto& input : inputs) node.add_input(input);
      for (const auto& attr : attrs)
        node.mutable_attr()->insert({attr.first, attr.second.proto});
      return node;
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/typecheck.go

    				}
    				if len(nl)-i > 1 {
    					goto toomany
    				}
    				n = nl[i]
    				ir.SetPos(n)
    				if n.Type() != nil {
    					nl[i] = assignconvfn(n, t, desc)
    				}
    				return
    			}
    
    			// TODO(mdempsky): Make into ... call with implicit slice.
    			for ; i < len(nl); i++ {
    				n = nl[i]
    				ir.SetPos(n)
    				if n.Type() != nil {
    					nl[i] = assignconvfn(n, t.Elem(), desc)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

      // may cause spurious cache misses.
      TF_ASSIGN_OR_RETURN(uint64 fingerprint, FingerprintGraph(*graph));
      VLOG(1) << "Subgraph fingerprint:" << fingerprint;
      call_def->set_op(absl::StrCat(call_def->op(), "_", fingerprint));
      return absl::OkStatus();
    }
    
    }  // namespace
    
    /*static*/ Status EncapsulateXlaComputationsPass::Encapsulate(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * is only used to select between URLs on your site.
         */
        private String priority;
    
        @Override
        public String getLoc() {
            return loc;
        }
    
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        @Override
        public String getLastmod() {
            return lastmod;
        }
    
        public void setLastmod(final String lastmod) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/buildcfg/exp.go

    		names := make(map[string]func(bool))
    		rv := reflect.ValueOf(&flags.Flags).Elem()
    		rt := rv.Type()
    		for i := 0; i < rt.NumField(); i++ {
    			field := rv.Field(i)
    			names[strings.ToLower(rt.Field(i).Name)] = field.SetBool
    		}
    
    		// "regabi" is an alias for all working regabi
    		// subexperiments, and not an experiment itself. Doing
    		// this as an alias make both "regabi" and "noregabi"
    		// do the right thing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:38:52 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top