Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,428 for reserved4 (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

    class CopyPermissionsIntegrationTest extends AbstractIntegrationSpec implements UnreadableCopyDestinationFixture {
    
        @Requires(UnitTestPreconditions.FilePermissions)
        def "file permissions are preserved in copy action"() {
            given:
            def testSourceFile = file(testFileName)
            testSourceFile << "test file content"
            testSourceFile.mode = mode
            and:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

    /* Copyright 2023 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. pkg/scheduler/metrics/metrics.go

    	ScoreExtensionNormalize     = "ScoreExtensionNormalize"
    	PreBind                     = "PreBind"
    	Bind                        = "Bind"
    	PostBind                    = "PostBind"
    	Reserve                     = "Reserve"
    	Unreserve                   = "Unreserve"
    	Permit                      = "Permit"
    )
    
    // All the histogram based metrics have 1ms as size for the smallest bucket.
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/conversion_test.go

    				Attributes: attrs(
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "newpodversioned"}},
    					&example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "oldpod"}},
    				),
    				// new name gets preserved from versioned object, type gets set explicitly
    				VersionedObject: &examplev1.Pod{TypeMeta: metav1.TypeMeta{APIVersion: "example.apiserver.k8s.io/v1", Kind: "Pod"}, ObjectMeta: metav1.ObjectMeta{Name: "newpodversioned"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/macho.go

    				out.Write32(t.off)
    				out.Write32(t.align)
    				out.Write32(t.reloc)
    				out.Write32(t.nreloc)
    				out.Write32(t.flag)
    				out.Write32(t.res1) /* reserved */
    				out.Write32(t.res2) /* reserved */
    				out.Write32(0)      /* reserved */
    			} else {
    				out.WriteStringN(t.name, 16)
    				out.WriteStringN(t.segname, 16)
    				out.Write32(uint32(t.addr))
    				out.Write32(uint32(t.size))
    				out.Write32(t.off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/DES.java

    // HIGH RISK ACTIVITIES.
    //
    //
    // The rest is:
    //
    // Copyright (C) 1996 by Jef Poskanzer <******@****.***>.  All rights reserved.
    //
    // Copyright (C) 1996 by Wolfgang Platzer
    // email: ******@****.***
    //
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions
    // are met:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package language
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strconv"
    
    	"golang.org/x/text/internal/tag"
    )
    
    // findIndex tries to find the given tag in idx and returns a standardized error
    // if it could not be found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ntlmssp/Type2Message.java

            // ServerChallenge
            byte[] challengeBytes = getChallenge();
            System.arraycopy(challengeBytes != null ? challengeBytes : new byte[8], 0, type2, pos, 8);
            pos += 8;
    
            // Reserved
            byte[] contextBytes = getContext();
            System.arraycopy(contextBytes != null ? contextBytes : new byte[8], 0, type2, pos, 8);
            pos += 8;
    
            // TargetInfoFields
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/codehost.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package codehost defines the interface implemented by a code hosting source,
    // along with support code for use by implementations.
    package codehost
    
    import (
    	"bytes"
    	"context"
    	"crypto/sha256"
    	"fmt"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/mvs_test.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mvs
    
    import (
    	"fmt"
    	"reflect"
    	"strings"
    	"testing"
    
    	"golang.org/x/mod/module"
    )
    
    var tests = `
    # Scenario from blog.
    name: blog
    A: B1 C2
    B1: D3
    C1: D2
    C2: D4
    C3: D5
    C4: G1
    D2: E1
    D3: E2
    D4: E2 F1
    D5: E2
    G1: C4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top