Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for nfound (0.19 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanWithMixInMethods.groovy

                DynamicInvokeResult tryInvokeMethod(String name, Object... arguments) {
                    if (name == "dyno") {
                        return DynamicInvokeResult.found(Arrays.toString(arguments))
                    }
                    return DynamicInvokeResult.notFound()
                }
            }
        }
    
        Object methodMissing(String name, Object params) {
            throw new AssertionError("Should not be called")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/sync/export_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package sync
    
    // Export for testing.
    var Runtime_Semacquire = runtime_Semacquire
    var Runtime_Semrelease = runtime_Semrelease
    var Runtime_procPin = runtime_procPin
    var Runtime_procUnpin = runtime_procUnpin
    
    // poolDequeue testing.
    type PoolDequeue interface {
    	PushHead(val any) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. pkg/kubelet/server/stats/volume_stat_calculator.go

    	// Find all Volumes for the Pod
    	volumes, found := s.statsProvider.ListVolumesForPod(s.pod.UID)
    	blockVolumes, bvFound := s.statsProvider.ListBlockVolumesForPod(s.pod.UID)
    	if !found && !bvFound {
    		return
    	}
    
    	metricVolumes := make(map[string]volume.MetricsProvider)
    
    	if found {
    		for name, v := range volumes {
    			metricVolumes[name] = v
    		}
    	}
    	if bvFound {
    		for name, v := range blockVolumes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoader.java

            if (!detector.found) {
                return bytes;
            }
    
            ClassWriter classWriter = new ClassWriter(0);
            classReader.accept(new TransformingAdapter(classWriter), 0);
            bytes = classWriter.toByteArray();
            return bytes;
        }
    
        private static class AnnotationDetector extends ClassVisitor {
            private boolean found;
    
            private AnnotationDetector() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typelists.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    // TypeParamList holds a list of type parameters.
    type TypeParamList struct{ tparams []*TypeParam }
    
    // Len returns the number of type parameters in the list.
    // It is safe to call on a nil receiver.
    func (l *TypeParamList) Len() int { return len(l.list()) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 28 22:21:55 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/net/http/example_filesystem_test.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http_test
    
    import (
    	"io/fs"
    	"log"
    	"net/http"
    	"strings"
    )
    
    // containsDotFile reports whether name contains a path element starting with a period.
    // The name is assumed to be a delimited by forward slashes, as guaranteed
    // by the http.FileSystem interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 02:32:42 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/str/str.go

    			goto Slow
    		}
    	}
    	return s
    
    Slow:
    	var b strings.Builder
    	for _, r := range s {
    		// SimpleFold(x) cycles to the next equivalent rune > x
    		// or wraps around to smaller values. Iterate until it wraps,
    		// and we've found the minimum value.
    		for {
    			r0 := r
    			r = unicode.SimpleFold(r0)
    			if r <= r0 {
    				break
    			}
    		}
    		// Exception to allow fast path above: A-Z => a-z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 20:08:07 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/runtime/internal/startlinetest/func_amd64.s

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "funcdata.h"
    #include "textflag.h"
    
    // Assembly function for runtime_test.TestStartLineAsm.
    //
    // Note that this file can't be built directly as part of runtime_test, as assembly
    // files can't declare an alternative package. Building it into runtime is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:33 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/AbstractPolymorphicDomainObjectContainer.java

            }
    
            @Override
            public DynamicInvokeResult tryGetProperty(String name) {
                Object object = findByName(name);
                return object == null ? DynamicInvokeResult.notFound() : DynamicInvokeResult.found(object);
            }
    
            @Override
            public Map<String, T> getProperties() {
                return getAsMap();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/CompositePluginResolver.java

            ImmutableList.Builder<PluginResolutionResult.NotFound> notFoundList = ImmutableList.builder();
            for (PluginResolver repository : repositories) {
                PluginResolutionResult result = repository.resolve(pluginRequest);
                if (result.isFound()) {
                    return result;
                }
                notFoundList.addAll(result.getNotFound());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top