Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for _return (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            finishVisitingMethod(methodVisitor, ARETURN);
        }
    
        private Method getToStringMethod(Class<?> managedTypeClass) {
            try {
                return managedTypeClass.getMethod("toString");
            } catch (NoSuchMethodException e) {
                return null;
            }
        }
    
        private void writeGroovyMethods(ClassVisitor visitor, Class<?> viewClass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/initialization/MixInLegacyTypesClassLoader.java

            if (!legacyTypesSupport.getSyntheticClasses().contains(name)) {
                return null;
            }
            return legacyTypesSupport.generateSyntheticClass(name);
        }
    
        @Override
        protected boolean shouldTransform(String className) {
            return legacyTypesSupport.getClassesToMixInGroovyObject().contains(className) || legacyTypesSupport.getSyntheticClasses().contains(className);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         */
        String getProcessResourcesTaskName();
    
        /**
         * Returns the name of the compile Java task for this source set.
         *
         * @return The task name. Never returns null.
         */
        String getCompileJavaTaskName();
    
        /**
         * Returns the name of a compile task for this source set.
         *
         * @param language The language to be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  4. pkg/scheduler/testing/framework/fake_plugins.go

    		return &FakeFilterPlugin{
    			FailedNodeReturnCodeMap: failedNodeReturnCodeMap,
    		}, nil
    	}
    }
    
    // MatchFilterPlugin is a filter plugin which return Success when the evaluated pod and node
    // have the same name; otherwise return Unschedulable.
    type MatchFilterPlugin struct{}
    
    // Name returns name of the plugin.
    func (pl *MatchFilterPlugin) Name() string {
    	return "MatchFilter"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/sync/atomic/type.go

    	return CompareAndSwapInt64(&x.v, old, new)
    }
    
    // Add atomically adds delta to x and returns the new value.
    func (x *Int64) Add(delta int64) (new int64) { return AddInt64(&x.v, delta) }
    
    // And atomically performs a bitwise AND operation on x using the bitmask
    // provided as mask and returns the old value.
    func (x *Int64) And(mask int64) (old int64) { return AndInt64(&x.v, mask) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('/path').getHostname() // returns ''
    //	url('https://example.com:80/').getPort() // returns '80'
    //	url('https://example.com/').getPort() // returns ''
    //	url('/path').getPort() // returns ''
    //	url('https://example.com/path').getEscapedPath() // returns '/path'
    //	url('https://example.com/path with spaces/').getEscapedPath() // returns '/path%20with%20spaces/'
    //	url('https://example.com').getEscapedPath() // returns ''
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. migrator/column_type.go

    		return ct.NullableValue.Bool, true
    	}
    	return ct.SQLColumnType.Nullable()
    }
    
    // Unique reports whether the column may be unique.
    func (ct ColumnType) Unique() (unique bool, ok bool) {
    	return ct.UniqueValue.Bool, ct.UniqueValue.Valid
    }
    
    // ScanType returns a Go type suitable for scanning into using Rows.Scan.
    func (ct ColumnType) ScanType() reflect.Type {
    	if ct.ScanTypeValue != nil {
    		return ct.ScanTypeValue
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 24 01:31:58 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. src/log/slog/value.go

    	case time.Time:
    		return TimeValue(v)
    	case uint8:
    		return Uint64Value(uint64(v))
    	case uint16:
    		return Uint64Value(uint64(v))
    	case uint32:
    		return Uint64Value(uint64(v))
    	case uintptr:
    		return Uint64Value(uint64(v))
    	case int8:
    		return Int64Value(int64(v))
    	case int16:
    		return Int64Value(int64(v))
    	case int32:
    		return Int64Value(int64(v))
    	case float64:
    		return Float64Value(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    	}
    	return b, true, nil
    }
    
    // NestedFloat64 returns the float64 value of a nested field.
    // Returns false if value is not found and an error if not a float64.
    func NestedFloat64(obj map[string]interface{}, fields ...string) (float64, bool, error) {
    	val, found, err := NestedFieldNoCopy(obj, fields...)
    	if !found || err != nil {
    		return 0, found, err
    	}
    	f, ok := val.(float64)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/errors/errors.go

    		return true
    	}
    	if _, ok := knownReasons[reason]; !ok && code == http.StatusGone {
    		return true
    	}
    	return false
    }
    
    // IsResourceExpired is true if the error indicates the resource has expired and the current action is
    // no longer possible.
    // It supports wrapped errors and returns false when the error is nil.
    func IsResourceExpired(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 21 03:41:32 UTC 2022
    - 30.5K bytes
    - Viewed (0)
Back to top