Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for atom (0.19 sec)

  1. src/net/mail/message.go

    		return "", errors.New("mail: invalid string")
    	}
    	atom, p.s = p.s[:i], p.s[i:]
    	if !permissive {
    		if strings.HasPrefix(atom, ".") {
    			return "", errors.New("mail: leading dot in atom")
    		}
    		if strings.Contains(atom, "..") {
    			return "", errors.New("mail: double dot in atom")
    		}
    		if strings.HasSuffix(atom, ".") {
    			return "", errors.New("mail: trailing dot in atom")
    		}
    	}
    	return atom, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertEquals("text", MediaType.parse("text/plain").type());
        assertEquals("application", MediaType.parse("application/atom+xml; charset=utf-8").type());
      }
    
      public void testGetSubtype() {
        assertEquals("plain", MediaType.parse("text/plain").subtype());
        assertEquals("atom+xml", MediaType.parse("application/atom+xml; charset=utf-8").subtype());
      }
    
      private static final ImmutableListMultimap<String, String> PARAMETERS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/MediaTypeTest.java

        assertEquals("text", MediaType.parse("text/plain").type());
        assertEquals("application", MediaType.parse("application/atom+xml; charset=utf-8").type());
      }
    
      public void testGetSubtype() {
        assertEquals("plain", MediaType.parse("text/plain").subtype());
        assertEquals("atom+xml", MediaType.parse("application/atom+xml; charset=utf-8").subtype());
      }
    
      private static final ImmutableListMultimap<String, String> PARAMETERS =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 05 13:16:00 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    the link rel=&amp;quot;self&amp;quot;, but the default value for that drops
    the :port from the URL, and I cannot for the life of me
    figure out how to get the Atom generator deep inside
    django not to do that, or even where it is doing that,
    or even what code is running to generate the Atom feed.
    (I thought I knew but I added some assert False statements
    and it kept running!)
    
    Ignoring that particular problem, I would appreciate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    				(35 <= c && c <= 91) ||
    				(93 <= c && c <= 126):
    				// qtext
    				localPartBytes = append(localPartBytes, c)
    
    			default:
    				return mailbox, false
    			}
    		}
    	} else {
    		// Atom ("." Atom)*
    	NextChar:
    		for len(in) > 0 {
    			// atext from RFC 2822, Section 3.2.4
    			c := in[0]
    
    			switch {
    			case c == '\\':
    				// Examples given in RFC 3696 suggest that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    		Link     string `xml:"link"`
    		AtomLink string `xml:"http://www.w3.org/2005/Atom link"` // Same name in a different name space
    	}
    	testCase := `<example>
    			<title>Example</title>
    			<link>http://example.com/default</link> <!-- not assigned -->
    			<link>http://example.com/home</link> <!-- not assigned -->
    			<ns:link xmlns:ns="http://www.w3.org/2005/Atom">http://example.com/ns</ns:link>
    		</example>`
    
    	var dest ExampleConflict
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. operator/pkg/compare/compare.go

    	if err != nil {
    		return "", err
    	}
    	aom := ao.ToMap()
    
    	bo, err := object.ParseK8sObjectsFromYAMLManifest(b)
    	if err != nil {
    		return "", err
    	}
    	bom := bo.ToMap()
    
    	if len(rnm) != 0 {
    		aom, err = renameResource(aom, rnm)
    		if err != nil {
    			return "", err
    		}
    	}
    
    	aosm, err := filterResourceWithSelectAndIgnore(aom, sm, im)
    	if err != nil {
    		return "", err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. internal/logger/config.go

    		queueSize, err := strconv.Atoi(queueSizeCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    		if queueSize <= 0 {
    			return cfg, errInvalidQueueSize
    		}
    		batchSizeCfgVal := getCfgVal(EnvLoggerWebhookBatchSize, k, kv.Get(BatchSize))
    		batchSize, err := strconv.Atoi(batchSizeCfgVal)
    		if err != nil {
    			return cfg, err
    		}
    		if batchSize <= 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. internal/config/api/api.go

    	if err = config.CheckValidKeys(config.APISubSys, kvs, DefaultKVS, deprecatedKeys...); err != nil {
    		return cfg, err
    	}
    
    	// Check environment variables parameters
    	requestsMax, err := strconv.Atoi(env.Get(EnvAPIRequestsMax, kvs.GetWithDefault(apiRequestsMax, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.RequestsMax = requestsMax
    	if requestsMax < 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (1)
  10. internal/config/notify/parse.go

    		if err != nil {
    			return nil, err
    		}
    
    		clientAuthEnv := target.EnvKafkaTLSClientAuth
    		if k != config.Default {
    			clientAuthEnv = clientAuthEnv + config.Default + k
    		}
    		clientAuth, err := strconv.Atoi(env.Get(clientAuthEnv, kv.Get(target.KafkaTLSClientAuth)))
    		if err != nil {
    			return nil, err
    		}
    
    		topicEnv := target.EnvKafkaTopic
    		if k != config.Default {
    			topicEnv = topicEnv + config.Default + k
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 46.4K bytes
    - Viewed (0)
Back to top