Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for and_extension (0.26 sec)

  1. src/syscall/syscall_windows_test.go

    	}
    	if len(name) == 0 {
    		t.Error("ComputerName returned empty string")
    	}
    }
    
    func TestWin32finddata(t *testing.T) {
    	dir := t.TempDir()
    
    	path := filepath.Join(dir, "long_name.and_extension")
    	f, err := os.Create(path)
    	if err != nil {
    		t.Fatalf("failed to create %v: %v", path, err)
    	}
    	f.Close()
    
    	type X struct {
    		fd  syscall.Win32finddata
    		got byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    	if x.XPreserveUnknownFields {
    		ret.VendorExtensible.AddExtension("x-kubernetes-preserve-unknown-fields", true)
    	}
    	if x.XEmbeddedResource {
    		ret.VendorExtensible.AddExtension("x-kubernetes-embedded-resource", true)
    	}
    	if x.XIntOrString {
    		ret.VendorExtensible.AddExtension("x-kubernetes-int-or-string", true)
    	}
    	if len(x.XListMapKeys) > 0 {
    		ret.VendorExtensible.AddExtension("x-kubernetes-list-map-keys", x.XListMapKeys)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISession.kt

        public val createPackagePartProvider: (GlobalSearchScope) -> PackagePartProvider,
        modulesWithFilesProvider: () -> Map<KtSourceModule, List<PsiFile>>
    ) {
        // TODO: better to limit exposure? Current usages are: addExtension, jarFileSystem
        public val coreApplicationEnvironment: CoreApplicationEnvironment = kotlinCoreProjectEnvironment.environment
    
        public val application: Application = kotlinCoreProjectEnvironment.environment.application
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf_mlir_reduce_main.cc

      }
    };
    
    }  // namespace
    
    int main(int argc, char *argv[]) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::DialectRegistry registry;
      mlir::RegisterCommonToolingDialects(registry);
    
      registry.addExtension(
          +[](mlir::MLIRContext *ctx, mlir::TF::TensorFlowDialect *dialect) {
            dialect->addInterfaces<TFReductionPatternInterface>();
          });
    
      mlir::MLIRContext context(registry);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 20:13:57 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXTarget.java

            APPLICATION("com.apple.product-type.application"),
            UNIT_TEST("com.apple.product-type.bundle.unit-test"),
            IN_APP_PURCHASE_CONTENT("com.apple.product-type.in-app-purchase-content"),
            APP_EXTENSION("com.apple.product-type.app-extension"),
            WATCH_OS1_APPLICATION("com.apple.product-type.application.watchapp"),
            WATCH_OS1_EXTENSION("com.apple.product-type.watchkit-extension");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top