Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 735 for palmer (0.14 sec)

  1. src/go/printer/printer_test.go

    	// silently dropping or mangling it.
    
    	fname := "foo\nbar/bar.go"
    	src := `package bar`
    	fset := token.NewFileSet()
    	f, err := parser.ParseFile(fset, fname, src, parser.ParseComments|parser.AllErrors|parser.SkipObjectResolution)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	cfg := &Config{
    		Mode:     SourcePos, // emit line comments
    		Tabwidth: 8,
    	}
    	var buf bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	case isSpecialSymbol(ch):
    		l.unread()
    		return l.scanSpecialSymbol()
    	default:
    		l.unread()
    		return l.scanIDOrKeyword()
    	}
    }
    
    // Parser data structure contains the label selector parser data structure
    type Parser struct {
    	l            *Lexer
    	scannedItems []ScannedItem
    	position     int
    	path         *field.Path
    }
    
    // ParserContext represents context during parsing:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            def rawAction = Mock(Action<? super ExecutionListener>)
    
            when:
            def commandLineExecution = factory.convert(["--some-option"])
            commandLineExecution.execute(executionListener)
    
            then:
            1 * actionFactory1.configureCommandLineParser(!null) >> {
                CommandLineParser parser -> parser.option("some-option")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        if (parser->parseOptionalOperand(operand_type).has_value()) {
          packed_inputs->emplace_back(operand_type);
          if (parser->parseKeyword("as",
                                   " between packed input and block argument") ||
              parser->parseOperand(packed_region_args.emplace_back(),
                                   /*allowResultNumber=*/false) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix.go

    	if _, err := c.Write(b); err != nil {
    		return dnsmessage.Parser{}, dnsmessage.Header{}, err
    	}
    
    	b = make([]byte, maxDNSPacketSize)
    	for {
    		n, err := c.Read(b)
    		if err != nil {
    			return dnsmessage.Parser{}, dnsmessage.Header{}, err
    		}
    		var p dnsmessage.Parser
    		// Ignore invalid responses as they may be malicious
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            when:
            parser.parse(resource('{ "formatVersion": "1.1" }'), metadata)
    
            then:
            1 * metadata.getMutableVariants()
            0 * metadata._
        }
    
        def "parses minimal metadata with identity and producer information"() {
            def metadata = Mock(MutableModuleComponentResolveMetadata)
    
            when:
            parser.parse(resource('''
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  7. pkg/log/scope_test.go

    			pat:    timePattern + "\tdebug\ttestScope\tlog/scope_test.go:.*\tHello",
    			caller: true,
    		},
    
    		{
    			f: func() { s.Debug("Hello") },
    			pat: "{\"level\":\"debug\",\"time\":\"" + timePattern + "\",\"scope\":\"testScope\",\"caller\":\"log/scope_test.go:.*\",\"msg\":\"Hello\"," +
    				"\"stack\":\".*\"}",
    			json:       true,
    			caller:     true,
    			stackLevel: DebugLevel,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. hack/lib/test.sh

        echo "message:${message}"
        echo "has not:${match}"
        caller
        return 1
      fi
    }
    
    kube::test::if_has_not_string() {
      local message=$1
      local match=$2
    
      if grep -q "${match}" <<< "${message}"; then
        echo -n "${bold}${red}"
        echo "FAIL!"
        echo -n "${reset}"
        echo "message:${message}"
        echo "has:${match}"
        caller
        return 1
      else
        echo -n "${green}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                spfactory.setFeature(Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false);
                final SAXParser parser = spfactory.newSAXParser();
                disableExternalResources(parser);
                parser.parse(in, handler);
            } catch (final Exception e) {
                throw new SitemapsException("Could not parse XML Sitemaps.", e);
            }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
       * reached, the proxy will attempt to abort the call to the target, and will throw an {@link
       * UncheckedTimeoutException} to the caller.
       *
       * <p>It is important to note that the primary purpose of the proxy object is to return control to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top