Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for ccCompiler (0.14 sec)

  1. src/runtime/mgcmark.go

    		// case, this includes the outgoing argument space
    		// since we may have stopped while this function was
    		// setting up a call.
    		//
    		// TODO: We could narrow this down if the compiler
    		// produced a single map per function of stack slots
    		// and registers that ever contain a pointer.
    		if frame.varp != 0 {
    			size := frame.varp - frame.sp
    			if size > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_3x.md

        never null unless explicitly annotated `@Nullable`.
    
     *  **Warning: this release is source-incompatible for Kotlin users.**
        Nullability was previously ambiguous and lenient but now the compiler will
        enforce strict null checks.
    
     *  New: The response message is now non-null. This is the "Not Found" in the
        status line "HTTP 404 Not Found". If you are building responses
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf.go

    				// used by the dynamic linker to compare executables and
    				// shared libraries -- so it only matters for cgo calls, and
    				// the information properly comes from the object files
    				// produced by the host C compiler. parseArmAttributes in
    				// ldelf.go reads that information and updates this field as
    				// appropriate.
    				ehdr.Flags = 0x5000002 // has entry point, Version5 EABI
    			}
    		} else if ctxt.Arch.Family == sys.MIPS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            PomTestWrapper pom = this.buildPom("plugin-management-inheritance");
            assertEquals(
                    "0.1-stub-SNAPSHOT",
                    pom.getValue("build/pluginManagement/plugins[@artifactId='maven-compiler-plugin']/version"));
        }
    
        @Test
        void testProfilePlugins() throws Exception {
            PomTestWrapper pom = this.buildPom("profile-plugins", "standard");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. tensorflow/c/eager/c_api_test.cc

            op, "config_proto",
            reinterpret_cast<const void*>(serialized_config.c_str()),
            serialized_config.length());
      }
    
      if (use_tfrt) {
        // Set some test-only graph compiler options.
        TFE_OpSetAttrBool(op, "TFRT_TEST_enable_native_ops", false);
        TFE_OpSetAttrBool(op, "TFRT_TEST_enable_grappler", enable_grappler);
      }
    
      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    	}
    	s, err := strconv.Unquote(lit.Value)
    	if err != nil {
    		return lit
    	}
    
    	// if the string is an invalid path, return whatever we have
    	//
    	// spec: "Implementation restriction: A compiler may restrict
    	// ImportPaths to non-empty strings using only characters belonging
    	// to Unicode's L, M, N, P, and S general categories (the Graphic
    	// characters without spaces) and may also exclude the characters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.28
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// The content of type checking information in a human-readable form.
    	// Each line of the warning contains the type that the expression is checked
    	// against, followed by the type check error from the compiler.
    	Warning string `json:"warning" protobuf:"bytes,3,opt,name=warning"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.30
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    				Actor:  work.ActorFunc(work.WriteCoverMetaFilesFile),
    				Objdir: b.NewObjdir(),
    			}
    			for _, p := range testCoverPkgs {
    				p.Internal.Cover.GenMeta = true
    			}
    		}
    	}
    
    	// Inform the compiler that it should instrument the binary at
    	// build-time when fuzzing is enabled.
    	if testFuzz != "" {
    		// Don't instrument packages which may affect coverage guidance but are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			pkg.err = err
    		}
    	}
    
    	pkg.inStd = (search.IsStandardImportPath(pkg.path) && search.InDir(pkg.dir, cfg.GOROOTsrc) != "")
    
    	var imports, testImports []string
    
    	if cfg.BuildContext.Compiler == "gccgo" && pkg.inStd {
    		// We can't scan standard packages for gccgo.
    	} else {
    		var err error
    		imports, testImports, err = scanDir(modroot, pkg.dir, ld.Tags)
    		if err != nil {
    			pkg.err = err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top