Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for augmented (0.18 sec)

  1. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    that the Vapour of Water rushes out of an Æolipile; the Sulphur also being volatile is converted into Vapour, and augments the Explosion. And the acid Vapour of the Sulphur (namely that which distils under a Bell into Oil of Sulphur,) entring violently into the fix'd Body of the Nitre, sets loose the Spirit of the Nitre, and excites a great Fermentation, whereby the Heat is farther augmented, and the fix'd Body of the Nitre is also rarified into Fume, and the Explosion is thereby made more vehement and...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/variables/simpleReassignment.txt

      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x = 1
          isAugmented = false
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 392 bytes
    - Viewed (0)
  3. src/testdata/Isaac.Newton-Opticks.txt

    an Æolipile; the Sulphur also being volatile is converted into Vapour,
    and augments the Explosion. And the acid Vapour of the Sulphur (namely
    that which distils under a Bell into Oil of Sulphur,) entring violently
    into the fix'd Body of the Nitre, sets loose the Spirit of the Nitre,
    and excites a great Fermentation, whereby the Heat is farther augmented,
    and the fix'd Body of the Nitre is also rarified into Fume, and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1beta1/conversion.go

    			set[key] = val
    		}
    		out.Selector = labels.SelectorFromSet(set).String()
    	} else {
    		out.Selector = ""
    	}
    	return nil
    }
    
    // Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentedExecutionAccess.java

     */
    
    package org.gradle.internal.classpath;
    
    import org.gradle.api.NonNullApi;
    
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * As {@link Instrumented} is using to augment calls at configuration time, this class is using
     * to augment calls at execution time.
     */
    @NonNullApi
    public class InstrumentedExecutionAccess {
    
        private static final Listener NO_OP = new Listener() {
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 17 20:16:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    					p.Shlib = filepath.Join(p.Internal.Build.PkgTargetRoot, "shlibs", libname)
    				} else {
    					p.Shlib = filepath.Join(p.Internal.Build.PkgTargetRoot, libname)
    				}
    			}
    		}
    	}
    
    	// Build augmented import list to add implicit dependencies.
    	// Be careful not to add imports twice, just to avoid confusion.
    	importPaths := p.Imports
    	addImport := func(path string, forCompiler bool) {
    		for _, p := range importPaths {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/conversion.go

    	ret := make(map[string]string, len(m))
    	for k, v := range m {
    		ret[k] = v
    	}
    	return ret
    }
    
    // Convert_apps_StatefulSetSpec_To_v1_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. pkg/apis/apps/v1beta2/conversion.go

    	ret := make(map[string]string, len(m))
    	for k, v := range m {
    		ret[k] = v
    	}
    	return ret
    }
    
    // Convert_v1beta2_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. pkg/kube/krt/static.go

    	return s.id
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (s *staticList[T]) dump() {
    }
    
    // nolint: unused // (not true, its to implement an interface)
    func (s *staticList[T]) augment(a any) any {
    	return a
    }
    
    func (s *staticList[T]) List() []T {
    	return maps.Values(s.vals)
    }
    
    func (s *staticList[T]) Register(f func(o Event[T])) Syncer {
    	return registerHandlerAsBatched(s, f)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

    package org.gradle.api.flow;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Augments the cached work graph with {@link FlowAction dataflow actions}, anonymous, parameterized and
     * isolated pieces of work that are triggered solely based on the availability of their input parameters.
     *
     * @since 8.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top