Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 201 for shortNames (0.12 sec)

  1. pkg/dns/server/name_table.go

    						}
    						address := []string{instance.Address}
    						shortName := instance.HostName + "." + instance.SubDomain
    						host := shortName + "." + parts[1] // Add cluster domain.
    						nameInfo := &dnsProto.NameTable_NameInfo{
    							Ips:       address,
    							Registry:  string(svc.Attributes.ServiceRegistry),
    							Namespace: svc.Attributes.Namespace,
    							Shortname: shortName,
    						}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 07:19:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                    ",fileNameLength=" + fileNameLength +
                    ",eaSize=" + eaSize +
                    ",shortNameLength=" + shortNameLength +
                    ",shortName=" + shortName +
                    ",filename=" + filename + "]" );
            }
        }
    
        int sid;
        boolean isEndOfSearch;
        int eaErrorOffset;
        int lastNameOffset, lastNameBufferIndex;
        String lastName;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/slog/slog.go

    				pass.ReportRangef(call, "call to %s missing a final value", shortName(fn))
    			} else {
    				pass.ReportRangef(call, "call to %s has a missing or misplaced value", shortName(fn))
    			}
    		}
    	})
    	return nil, nil
    }
    
    func isAttr(t types.Type) bool {
    	return analysisutil.IsNamedType(t, "log/slog", "Attr")
    }
    
    // shortName returns a name for the function that is shorter than FullName.
    // Examples:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

                        + this.allocationSize + ",extFileAttributes=" + this.extFileAttributes + ",eaSize=" + this.eaSize + ",shortName=" + this.shortName
                        + ",filename=" + this.filename + "]");
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
  5. releasenotes/notes/27159.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 27159
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 12 21:10:43 UTC 2020
    - 175 bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/typeInfoProvider/AbstractIsDenotableTest.kt

                        val base = expression.baseExpression
                        if (base == null || expression.annotationEntries.none {
                                it.shortName == denotableName || it.shortName == undenotableName
                            }) {
                            super.visitAnnotatedExpression(expression)
                            return
                        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        }
    
        private fun KaScope.getAllSymbolsFromScopeByShortName(fqName: FqName): Collection<KaDeclarationSymbol> {
            val shortName = fqName.shortName()
            return buildSet {
                addAll(getCallableSymbols(shortName))
                addAll(getClassifierSymbols(shortName))
            }
        }
    
        /**
         * Tries to resolve [fqName] into available extension callables (functions or properties)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
                "description": "shortNames is a list of suggested short names of the resource.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/OsddHelperTest.java

                    assertEquals("""
                            <?xml version="1.0" encoding="UTF-8"?>
                            <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
                              <ShortName>Fess</ShortName>
                              <Description>Full Text Search for Your Documents.</Description>
                              <Tags>Full Text Search</Tags>
                              <Contact>******@****.***</Contact>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/lds.go

    	// no "." - assuming this is a shortname "foo" -> "foo.ns.svc.cluster.local"
    	if !strings.Contains(name, ".") {
    		return fmt.Sprintf("%s.%s", name, node.DNSDomain)
    	}
    	for _, suffix := range []string{
    		node.Metadata.Namespace,
    		node.Metadata.Namespace + ".svc",
    	} {
    		shortname := strings.TrimSuffix(name, "."+suffix)
    		if shortname != name && strings.HasPrefix(node.DNSDomain, suffix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top