Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 714 for Parses (0.12 sec)

  1. pkg/util/iptables/iptables.go

    }
    
    // ParseError records the payload when iptables reports an error parsing its input.
    type ParseError interface {
    	// Line returns the line number on which the parse error was reported.
    	// NOTE: First line is 1.
    	Line() int
    	// Error returns the error message of the parse error, including line number.
    	Error() string
    }
    
    type parseError struct {
    	cmd  string
    	line int
    }
    
    func (e parseError) Line() int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  2. src/go/scanner/scanner.go

    		s.updateLineInfo(next, offs, lit)
    	}
    
    	if numCR > 0 {
    		lit = stripCR(lit, lit[1] == '*')
    	}
    
    	return string(lit), nlOffset
    }
    
    var prefix = []byte("line ")
    
    // updateLineInfo parses the incoming comment text at offset offs
    // as a line directive. If successful, it updates the line info table
    // for the position next per the line directive.
    func (s *Scanner) updateLineInfo(next, offs int, text []byte) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                val result = module.getJavaModuleRoots()
                result
            }
        }
    
        /**
         * Note that [findJvmRootsForJavaFiles] parses the given [files] because it needs access to each file's package name. To avoid parsing
         * errors, [registerJavaPsiFacade] ensures that the Java language level is configured before [findJvmRootsForJavaFiles] is called.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. pkg/volume/portworx/portworx_util.go

    	}
    
    	// Perform a best-effort parsing of parameters. Portworx 1.2.9 and later parses volume parameters from
    	// spec.VolumeLabels. So even if below SpecFromOpts() fails to parse certain parameters or
    	// doesn't support new parameters, the server-side processing will parse it correctly.
    	// We still need to call SpecFromOpts() here to handle cases where someone is running Portworx 1.2.8 and lower.
    	specHandler := osdspec.NewSpecHandler()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/flags.h

    };
    
    // Return a pointer to the DumpGraphFlags struct;
    // repeated calls return the same pointer.
    // This should be called only after Flags::Parse() has returned.
    
    // Getters for flags structs defined above.  The first call to any of these
    // parses TF_XLA_FLAGS for all of them.  Those functions which return a pointer
    // always return the same pointer.
    MarkForCompilationPassFlags* GetMarkForCompilationPassFlags();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. src/syscall/syscall_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Darwin system calls.
    // This file is compiled as ordinary Go code,
    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

       *     length of zero or cannot be parsed as a long value
       * @throws NullPointerException if {@code string} is {@code null}
       * @since 14.0
       */
      @CheckForNull
      public static Long tryParse(String string) {
        return tryParse(string, 10);
      }
    
      /**
       * Parses the specified string as a signed long value using the specified radix. The ASCII
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/primitives/Longs.java

       *     length of zero or cannot be parsed as a long value
       * @throws NullPointerException if {@code string} is {@code null}
       * @since 14.0
       */
      @CheckForNull
      public static Long tryParse(String string) {
        return tryParse(string, 10);
      }
    
      /**
       * Parses the specified string as a signed long value using the specified radix. The ASCII
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds.go

    		return true
    	}
    	for update := range updates {
    		switch update.Kind {
    		case kind.Secret:
    			return true
    		case kind.ReferenceGrant:
    			return true
    		}
    	}
    	return false
    }
    
    // parseResources parses a list of resource names to SecretResource types, for a given proxy.
    // Invalid resource names are ignored
    func (s *SecretGen) parseResources(names []string, proxy *model.Proxy) []SecretResource {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/noder/noder.go

    	if name == "" {
    		return false
    	}
    	c := name[0]
    	return '0' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || c == '.' || c == '_' || c == '/' || c >= utf8.RuneSelf
    }
    
    // parseGoEmbed parses the text following "//go:embed" to extract the glob patterns.
    // It accepts unquoted space-separated patterns as well as double-quoted and back-quoted Go strings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top