Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for aixVer (0.25 sec)

  1. src/net/platform_test.go

    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			aixVer := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unixEnabledOnAIX = aixVer > "7200" || (aixVer == "7200" && tl >= 2)
    		}
    	}
    }
    
    // testableNetwork reports whether network is testable on the current
    // platform configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. src/syscall/syscall_unix_test.go

    			t.Skip("skipping on AIX because oslevel -s hasn't the right length")
    		}
    		aixVer := string(out[:4])
    		tl, err := strconv.Atoi(string(out[5:7]))
    		if err != nil {
    			t.Skipf("skipping on AIX because oslevel -s output cannot be parsed: %v", err)
    		}
    		if aixVer < "7200" || (aixVer == "7200" && tl < 2) {
    			t.Skip("skipped on AIX versions previous to 7.2 TL 2")
    		}
    
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. pkg/collateral/metrics/otel_test.go

    var (
    	// AttributesTotal is a measure of the number of known attributes.
    	AttributesTotal = monitoring.NewGauge(
    		"mixer/config/attributes_total",
    		"The number of known attributes in the current config.",
    	)
    
    	// HandlersTotal is a measure of the number of known handlers.
    	HandlersTotal = monitoring.NewSum(
    		"mixer/config/handler_configs_total",
    		"The number of known handlers in the current config.",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. releasenotes/notes/25669.yaml

    kind: feature
    area: telemetry
    issue:
      - 25333
      - 24300
    releaseNotes:
      - |
        **Removed** all Mixer-related features and functionality. This is a scheduled
        removal of a deprecated Istio services and deployments, as well as
        Mixer-focused CRDs and component and related functionality.
    
    upgradeNotes:
      - title: Mixer is no longer supported in Istio.
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 12 21:50:07 UTC 2020
    - 937 bytes
    - Viewed (0)
  5. releasenotes/notes/validation-mixer.yaml

    John Howard <******@****.***> 1606102574 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 23 03:36:14 UTC 2020
    - 188 bytes
    - Viewed (0)
  6. docs/fr/docs/fastapi-people.md

    {% endfor %}
    {% endif %}
    
    ## À propos des données - détails techniques
    
    L'intention de cette page est de souligner l'effort de la communauté pour aider les autres.
    
    Notamment en incluant des efforts qui sont normalement moins visibles, et, dans de nombreux cas, plus difficile, comme aider d'autres personnes à résoudre des problèmes et examiner les Pull Requests de traduction.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. docs/fr/docs/help-fastapi.md

    # Help FastAPI - Obtenir de l'aide
    
    Aimez-vous **FastAPI** ?
    
    Vous souhaitez aider FastAPI, les autres utilisateurs et l'auteur ?
    
    Ou souhaitez-vous obtenir de l'aide avec le **FastAPI** ?
    
    Il existe des moyens très simples d'aider (plusieurs ne nécessitent qu'un ou deux clics).
    
    Il existe également plusieurs façons d'obtenir de l'aide.
    
    ## Star **FastAPI** sur GitHub
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 08:39:03 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. releasenotes/notes/24471.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 24471
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 177 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/algkind_string.go

    	_ = x[AUNK-0]
    	_ = x[ANOEQ-1]
    	_ = x[ANOALG-2]
    	_ = x[AMEM-3]
    	_ = x[AMEM0-4]
    	_ = x[AMEM8-5]
    	_ = x[AMEM16-6]
    	_ = x[AMEM32-7]
    	_ = x[AMEM64-8]
    	_ = x[AMEM128-9]
    	_ = x[ASTRING-10]
    	_ = x[AINTER-11]
    	_ = x[ANILINTER-12]
    	_ = x[AFLOAT32-13]
    	_ = x[AFLOAT64-14]
    	_ = x[ACPLX64-15]
    	_ = x[ACPLX128-16]
    	_ = x[ASPECIAL-17]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. .pre-commit-config.yaml

        rev: v4.4.0
        hooks:
        -   id: check-added-large-files
        -   id: check-toml
        -   id: check-yaml
            args:
            -   --unsafe
        -   id: end-of-file-fixer
        -   id: trailing-whitespace
    -   repo: https://github.com/charliermarsh/ruff-pre-commit
        rev: v0.2.0
        hooks:
        -   id: ruff
            args:
            - --fix
        -   id: ruff-format
    ci:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Mar 26 16:56:53 UTC 2024
    - 737 bytes
    - Viewed (0)
Back to top