Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 286 for Mystring (0.1 sec)

  1. pkg/config/analysis/local/context.go

    	error,
    ) {
    	res := resource.PilotConfigToInstance(&cfg, colschema)
    	fmstring := cfg.Meta.Annotations[file.FieldMapKey]
    	var out map[string]int
    	if fmstring != "" {
    		err := json.Unmarshal([]byte(fmstring), &out)
    		if err != nil {
    			return nil, fmt.Errorf("error parsing fieldmap: %s", err)
    		}
    	}
    	refstring := cfg.Meta.Annotations[file.ReferenceKey]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    				Header: map[string][]string{
    					"X-Real-Ip": {invalidIPString},
    				},
    			},
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Forwarded-For": {ipString},
    				},
    			},
    			ExpectedIP: ip,
    		},
    		{
    			Request: http.Request{
    				Header: map[string][]string{
    					"X-Forwarded-For": {invalidIPString},
    				},
    			},
    		},
    		{
    			Request: http.Request{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Version.java

     * @see org.apache.maven.api.services.VersionParser#parseVersion(String)
     * @see org.apache.maven.api.Session#parseVersion(String)
     */
    @Experimental
    public interface Version extends Comparable<Version> {
        /**
         * Returns a string representation of this version.
         * @return the string representation of this version
         */
        @Nonnull
        String asString();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/c/tf_tstring.h

    #ifndef TENSORFLOW_C_TF_TSTRING_H_
    #define TENSORFLOW_C_TF_TSTRING_H_
    
    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_tensor.h"
    #include "tensorflow/core/platform/ctstring.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    TF_CAPI_EXPORT extern void TF_StringInit(TF_TString *t);
    
    TF_CAPI_EXPORT extern void TF_StringCopy(TF_TString *dst, const char *src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtTypeNameRenderer.kt

                analysisSession: KaSession,
                name: Name,
                owner: KaType,
                typeRenderer: KaTypeRenderer,
                printer: PrettyPrinter,
            ) {
                printer.append(name.asString())
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultNode.java

        }
    
        @Override
        public String asString() {
            String nodeString = super.asString();
    
            if (!verbose) {
                return nodeString;
            }
    
            org.eclipse.aether.graph.DependencyNode node = getDependencyNode();
    
            List<String> details = new ArrayList<>();
    
            org.eclipse.aether.graph.DependencyNode winner =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

                connections[HttpConnection.currentConnection] = connectionAuth
            }
    
            if (connectionAuth.failed) {
                httpResponse.setHeader(HttpHeader.WWW_AUTHENTICATE.asString(), "basic realm=\"" + _loginService.getName() + '"')
                httpResponse.sendError(HttpServletResponse.SC_UNAUTHORIZED)
                return Authentication.SEND_CONTINUE
            } else if (connectionAuth.user != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                is Name -> printer.append(value.asString())
                is FqName -> printer.append(value.asString())
                is ClassId -> printer.append(value.asString())
                is DeprecationInfo -> renderDeprecationInfo(value, printer)
                is Visibility -> printer.append(value::class.java.simpleName)
                // Unsigned integers
                is UByte -> printer.append(value.toString())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                    }?.fqNameForClassNameWithoutDollars?.asString()
                }
                else -> {
                    return if (containingSymbolOrSelf.symbolKind == KaSymbolKind.TOP_LEVEL) {
                        descriptor?.let(DescriptorToSourceUtils::getContainingFile)
                            ?.takeUnless { it.isScript() }
                            ?.javaFileFacadeFqName?.asString()
                    } else {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/test/util/file/file.go

    	b, err := AsBytes(filename)
    	if err != nil {
    		return "", err
    	}
    	return string(b), nil
    }
    
    // AsStringOrFail calls AsBytesOrFail and then converts to string.
    func AsStringOrFail(t test.Failer, filename string) string {
    	t.Helper()
    	return string(AsBytesOrFail(t, filename))
    }
    
    // MustAsString calls MustAsBytes and then converts to string.
    func MustAsString(filename string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top