Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for getVars (0.13 sec)

  1. pkg/ctrlz/topics/env.go

    		fw.RenderHTML(w, tmpl, getVars())
    	})
    
    	_ = context.JSONRouter().StrictSlash(true).NewRoute().Methods("GET").Path("/").HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		fw.RenderJSON(w, http.StatusOK, getVars())
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathFixture.groovy

        List<EclipseSourceDir> getSourceDirs() {
            return this.classpath.classpathentry.findAll { it.@kind == 'src' && !******@****.***With('/') }.collect { new EclipseSourceDir(it) }
        }
    
        List<EclipseLibrary> getVars() {
            return this.classpath.classpathentry.findAll { it.@kind == 'var' }.collect { new EclipseLibrary(it) }
        }
    
        abstract class EclipseClasspathEntry {
            final Node entry
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/checkstyle/CheckstylePluginHtmlReportIntegrationTest.groovy

                        return "bar";
                    }
                    public String getBar3() {
                        return "bar";
                    }
                }
            """
            file("src/main/java/com/example/Bar.java").java """
                package com.example;
    
                public class Bar {
                    public String getBar() {
                        return "bar";
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 16 22:34:07 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * However, when both getter methods are present, Gradle needs to decide which method to use to access the property value. This can be solved
     * by explicitly ignoring one of the two getters using the ignore annotation.
     * </p>
     *
     * <p>
     * A special case of this is when both getters are generated by Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

                }
            }
    
            if (setters.size() != getters.size()) {
                throwParameterValidationError(clazz, "It contains a different number of getters and setters.");
            }
    
            for (String property : setters.keySet()) {
                if (!getters.containsKey(property)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/PropertyAccessorExtractionContext.java

        public List<Method> getGetters() {
            List<Method> getters;
            if (mostSpecificDeclaration.getReturnType()==Boolean.TYPE) {
                getters = new ArrayList<>();
                for (Method getter : declaringMethods) {
                    if (Proxy.isProxyClass(getter.getDeclaringClass())) {
                        continue;
                    }
                    getters.add(getter);
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MutablePropertyDetails.java

        private final MethodSet getters = new MethodSet();
        private final MethodSet setters = new MethodSet();
        private Field field;
    
        MutablePropertyDetails(String name) {
            this.name = name;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public Collection<Method> getGetters() {
            return getters.getValues();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    }
    
    func TestSingleArgumentCastRecFuncAsSimpleArg() C.int {
    	retcode := C.func_with_char((*C.char)(unsafe.Pointer(C.get_arr((*C.char)(unsafe.Pointer(&singleInnerPointerChecked[0])), unsafe.Pointer(C.strarg)))), nil)
    	return retcode
    }
    
    func TestSingleArgumentCastRecFunc() C.int {
    	retcode := C.func_with_char((*C.char)(unsafe.Pointer(C.get_arr((*C.char)(unsafe.Pointer(&doublePointerChecked[0])), unsafe.Pointer(C.strarg)))), unsafe.Pointer(C.strarg))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/entity/ElevateWord.java

            return new SuggestItem(new String[] { this.getElevateWord() }, readingArray, fields.toArray(new String[fields.size()]), 1, 0,
                    this.getBoost(), this.getTags().toArray(new String[this.getTags().size()]),
                    this.getRoles().toArray(new String[this.getRoles().size()]), null, SuggestItem.Kind.USER);
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. test/fixedbugs/bug343.go

    // issue 1900
    
    package main
    
    func getArgs(data map[string]interface{}, keys ...string) map[string]string {
           ret := map[string]string{}
           var ok bool
           for _, k := range keys {
                   ret[k], ok = data[k].(string)
                   if !ok {}
           }
           return ret
    }
    
    func main() {
    	x := getArgs(map[string]interface{}{"x":"y"}, "x")
    	if x["x"] != "y" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 721 bytes
    - Viewed (0)
Back to top