Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for Deprecation (0.32 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

                ConfigurationRoles.CONSUMABLE_DEPENDENCY_SCOPE
            ] + ConfigurationRolesForMigration.ALL
        }
    
        void "copies disabled configuration role as a deprecation"() {
            def configuration = prepareConfigurationForCopyTest()
            def resolutionStrategyCopy = Mock(ResolutionStrategyInternal)
            1 * resolutionStrategy.copy() >> resolutionStrategyCopy
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/MapsTest.java

          fail();
        } catch (NullPointerException expected) {
        }
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Maps.fromProperties
      @SuppressWarnings("deprecation") // StringBufferInputStream
      public void testFromProperties() throws IOException {
        Properties testProp = new Properties();
    
        Map<String, String> result = Maps.fromProperties(testProp);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	// register new KubeletConfiguration
    	options.AddKubeletConfigFlags(fs, kc)
    	// Remember original feature gates, so we can merge with flag gates later
    	original := kc.FeatureGates
    	// avoid duplicate printing the flag deprecation warnings during re-parsing
    	fs.SetOutput(io.Discard)
    	// re-parse flags
    	if err := fs.Parse(args); err != nil {
    		return err
    	}
    	// Add back feature gates that were set in the original kc, but not in flags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	flag.BoolVar(&force, "force", force, "build even if the port is marked as broken")
    	flag.BoolVar(&noBanner, "no-banner", noBanner, "do not print banner")
    	flag.BoolVar(&noClean, "no-clean", noClean, "print deprecation warning")
    
    	xflagparse(0)
    
    	if noClean {
    		xprintf("warning: --no-clean is deprecated and has no effect; use 'go install std cmd' instead\n")
    	}
    
    	// Don't build broken ports by default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    --
    
    [[sec:compilation_warnings]]
    === Compilation warnings
    
    Gradle Kotlin DSL scripts are compiled by Gradle during the configuration phase of your build.
    Deprecation warnings found by the Kotlin compiler are reported on the console when compiling the scripts.
    
    [source,text]
    ----
    > Configure project :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
        }
    
        @SuppressWarnings("deprecation") // serialization of deprecated feature
        @J2ktIncompatible // java.io.ObjectInputStream
        MapMaker readMapMaker(ObjectInputStream in) throws IOException {
          int size = in.readInt();
          return new MapMaker()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
        }
    
        @SuppressWarnings("deprecation") // serialization of deprecated feature
        @J2ktIncompatible // java.io.ObjectInputStream
        MapMaker readMapMaker(ObjectInputStream in) throws IOException {
          int size = in.readInt();
          return new MapMaker()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		if ctxt.IsDarwin() && ctxt.IsAMD64() {
    			const noPieWarning = "ld: warning: -no_pie is deprecated when targeting new OS versions\n"
    			if i := bytes.Index(out, []byte(noPieWarning)); i >= 0 {
    				// swallow -no_pie deprecation warning, issue 54482
    				out = append(out[:i], out[i+len(noPieWarning):]...)
    			}
    		}
    		if ctxt.IsDarwin() {
    			const bindAtLoadWarning = "ld: warning: -bind_at_load is deprecated on macOS\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top