Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 182 for Temp (0.09 sec)

  1. src/cmd/compile/internal/walk/order.go

    func (o *orderState) markTemp() ordermarker {
    	return ordermarker(len(o.temp))
    }
    
    // popTemp pops temporaries off the stack until reaching the mark,
    // which must have been returned by markTemp.
    func (o *orderState) popTemp(mark ordermarker) {
    	for _, n := range o.temp[mark:] {
    		key := n.Type().LinkString()
    		o.free[key] = append(o.free[key], n)
    	}
    	o.temp = o.temp[:mark]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. cni/pkg/install/install_test.go

    			cniConfigFilename: "istio-cni.conf",
    			existingConfFiles: map[string]string{"istio-cni.conf": "istio-cni.conf"},
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			// Create temp directory for files
    			tempDir := t.TempDir()
    
    			// Create existing config files if specified in test case
    			for srcFilename, targetFilename := range c.existingConfFiles {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/iscsi_test.go

    	"k8s.io/kubernetes/pkg/volume"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    )
    
    func TestCanSupport(t *testing.T) {
    	tmpDir, err := utiltesting.MkTmpdir("iscsi_test")
    	if err != nil {
    		t.Fatalf("error creating temp dir: %v", err)
    	}
    	defer os.RemoveAll(tmpDir)
    
    	plugMgr := volume.VolumePluginMgr{}
    	plugMgr.InitPlugins(ProbeVolumePlugins(), nil /* prober */, volumetest.NewFakeVolumeHost(t, tmpDir, nil, nil))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_ppc64x.s

    	SRD	$6, LEN
    	SLD	$6, LEN
    	ADD	INP, LEN, END
    
    	CMP	INP, END
    	BEQ	end
    
    	MOVD	$·kcon(SB), TBL_STRT
    	MOVD	$0x10, R_x010
    
    #ifdef GOARCH_ppc64le
    	MOVWZ	$8, TEMP
    	LVSL	(TEMP)(R0), LEMASK
    	VSPLTISB	$0x0F, KI
    	VXOR	KI, LEMASK, LEMASK
    #endif
    
    	LXVW4X	(CTX)(R_x000), V0
    	LXVW4X	(CTX)(R_x010), V4
    
    	// unpack the input values into vector registers
    	VSLDOI	$4, V0, V0, V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. src/crypto/sha512/sha512block_ppc64x.s

    	MOVD	$0x0d0, R_x0d0
    	MOVD	$0x0e0, R_x0e0
    	MOVD	$0x0f0, R_x0f0
    	MOVD	$0x100, R_x100
    	MOVD	$0x110, R_x110
    
    
    #ifdef GOARCH_ppc64le
    	// Generate the mask used with VPERM for LE
    	MOVWZ	$8, TEMP
    	LVSL	(TEMP)(R0), LEMASK
    	VSPLTISB	$0x0F, KI
    	VXOR	KI, LEMASK, LEMASK
    #endif
    
    	LXVD2X	(CTX)(R_x000), VS32	// v0 = vs32
    	LXVD2X	(CTX)(R_x010), VS34	// v2 = vs34
    	LXVD2X	(CTX)(R_x020), VS36	// v4 = vs36
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. src/cmd/internal/notsha256/sha256block_ppc64x.s

    	SRD	$6, LEN
    	SLD	$6, LEN
    	ADD	INP, LEN, END
    
    	CMP	INP, END
    	BEQ	end
    
    	MOVD	$·kcon(SB), TBL_STRT
    	MOVD	$0x10, R_x010
    
    #ifdef GOARCH_ppc64le
    	MOVWZ	$8, TEMP
    	LVSL	(TEMP)(R0), LEMASK
    	VSPLTISB	$0x0F, KI
    	VXOR	KI, LEMASK, LEMASK
    #endif
    
    	LXVW4X	(CTX)(R_x000), V0
    	LXVW4X	(CTX)(R_x010), V4
    
    	// unpack the input values into vector registers
    	VSLDOI	$4, V0, V0, V1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

                            skip = true
                        }
                    }
                }
                if (!skip) {
                    temp.write(current)
                }
            }
            return temp.toByteArray()
        }
    
        private static java.util.jar.Manifest readJavaManifest(File file) {
            (java.util.jar.Manifest) file.withInputStream { new java.util.jar.Manifest(it) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		t.Error("getKubeConfigSpecs didnt failed when expected")
    	}
    }
    
    func TestGetKubeConfigSpecs(t *testing.T) {
    	// Create temp folder for the test case
    	tmpdir := testutil.SetupTempDir(t)
    	defer os.RemoveAll(tmpdir)
    
    	// Adds a pki folder with a ca certs to the temp folder
    	pkidir := testutil.SetupPkiDirWithCertificateAuthority(t, tmpdir)
    
    	// Creates InitConfigurations pointing to the pkidir folder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

    import com.google.common.collect.Interners;
    import com.google.inject.AbstractModule;
    import com.google.inject.Provides;
    import org.apache.commons.io.FileUtils;
    import org.gradle.api.internal.file.temp.DefaultTemporaryFileProvider;
    import org.gradle.api.internal.file.temp.TemporaryFileProvider;
    import org.gradle.cache.CacheCleanupStrategy;
    import org.gradle.cache.DefaultCacheCleanupStrategy;
    import org.gradle.cache.FileLockManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. pkg/volume/volume_linux_test.go

    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.description, func(t *testing.T) {
    			tmpDir, err := utiltesting.MkTmpdir("volume_linux_test")
    			if err != nil {
    				t.Fatalf("error creating temp dir: %v", err)
    			}
    
    			defer os.RemoveAll(tmpDir)
    
    			info, err := os.Lstat(tmpDir)
    			if err != nil {
    				t.Fatalf("error reading permission of tmpdir: %v", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 12.1K bytes
    - Viewed (0)
Back to top