Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 864 for palmer (0.11 sec)

  1. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (p *Parser) Start(msg []byte) (Header, error) {
    	if p.msg != nil {
    		*p = Parser{}
    	}
    	p.msg = msg
    	var err error
    	if p.off, err = p.header.unpack(msg, 0); err != nil {
    		return Header{}, &nestedError{"unpacking header", err}
    	}
    	p.section = sectionQuestions
    	return p.header.header(), nil
    }
    
    func (p *Parser) checkAdvance(sec section) error {
    	if p.section < sec {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolverDescriptorParseContext.java

    import java.io.File;
    
    /**
     * ParserSettings that control the scope of searches carried out during parsing.
     * If the parser asks for a resolver for the currently resolving revision, the resolver scope is only the repository where the module was resolved.
     * If the parser asks for a resolver for a different revision, the resolver scope is all repositories.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

                applyTo(settings, Origin.forGradleProperty(property));
            }
        }
    
        @Override
        public void configure(CommandLineParser parser) {
            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                configureCommandLineOption(parser, config.getAllOptions(), config.getDescription(), config.isDeprecated(), config.isIncubating());
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/index/suffixarray/sais.go

    		// so we can now place k correctly into sa.
    		// If k-1 is L-type, queue k for processing later in this loop.
    		// If k-1 is S-type (text[k-1] < text[k]), queue -k to save for the caller.
    		// If k is zero, k-1 doesn't exist, so we only need to leave it
    		// for the caller. The caller can't tell the difference between
    		// an empty slot and a non-empty zero, but there's no need
    		// to distinguish them anyway: the final suffix array will end up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockManager) EXPECT() *MockManagerMockRecorder {
    	return m.recorder
    }
    
    // IsUnderDiskPressure mocks base method.
    func (m *MockManager) IsUnderDiskPressure() bool {
    	m.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/ingress.go

    		cluster:       ctx.Clusters().GetOrDefault(cfg.Cluster),
    		caller:        common.NewCaller(),
    	}
    	return c
    }
    
    type ingressImpl struct {
    	service       types.NamespacedName
    	labelSelector string
    
    	env     *kube.Environment
    	cluster cluster.Cluster
    	caller  *common.Caller
    }
    
    func (c *ingressImpl) Close() error {
    	return c.caller.Close()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-task-across-generations.go

    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // The issue is that EvUserTaskEnd events don't carry the
    // task type with them, so the parser needs to track that
    // information. But if the parser just tracks the string ID
    // and not the string itself, that string ID may not be valid
    // for use in future generations.
    
    package main
    
    import (
    	"internal/trace"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.java

        }
    
        @Override
        public MethodHandle decorateMethodHandle(MethodHandle original, MethodHandles.Lookup caller, int flags) {
            MethodHandle spreader = original.asSpreader(Object[].class, original.type().parameterCount());
            MethodHandle decorated = MethodHandles.insertArguments(INTERCEPTOR, 0, this, spreader, flags, caller.lookupClass().getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/runtime/lockrank_on.go

    	// additional issues.
    	systemstack(func() {
    		printlock()
    		print("caller requires lock ", l, " (rank ", l.rank.String(), "), holding:\n")
    		printHeldLocks(gp)
    		throw("not holding required lock!")
    	})
    }
    
    // assertRankHeld throws if a mutex with rank r is not held by the caller.
    //
    // This is less precise than assertLockHeld, but can be used in places where a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.go

    		if err := checkOtherFile(pass, name); err != nil {
    			return nil, err
    		}
    	}
    	for _, name := range pass.IgnoredFiles {
    		if strings.HasSuffix(name, ".go") {
    			f, err := parser.ParseFile(pass.Fset, name, nil, parser.ParseComments)
    			if err != nil {
    				// Not valid Go source code - not our job to diagnose, so ignore.
    				return nil, nil
    			}
    			checkGoFile(pass, f)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top