Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 158 for recreate (0.14 sec)

  1. pkg/config/mesh/watcher.go

    		if !reflect.DeepEqual(meshConfig.ConfigSources, current.ConfigSources) {
    			log.Info("mesh configuration sources have changed")
    			// TODO Need to recreate or reload initConfigController()
    		}
    
    		w.MeshConfig.Store(meshConfig)
    		handlers = append(handlers, w.handlers...)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 20 18:33:38 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/probe.go

    	pluginDirAbs, err := filepath.Abs(prober.pluginDir)
    	if err != nil {
    		return err
    	}
    
    	// event of pluginDirAbs
    	if eventPathAbs == pluginDirAbs {
    		// If the Flexvolume plugin directory is removed, need to recreate it
    		// in order to keep it under watch.
    		if event.Has(fsnotify.Remove) {
    			if err := prober.createPluginDir(); err != nil {
    				return err
    			}
    			if err := prober.addWatchRecursive(pluginDirAbs); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

          op.eraseOperands(erase);
        }
      }
    }
    
    // Erases the given results from an operation, similar to what
    // Operation::eraseArguments does (but for results).
    // This is a lengthy bit of code, since it has to recreate the operation.
    // TODO(kramm): Move this under utils/ somewhere.
    void EraseResults(Operation* op, llvm::BitVector erase) {
      assert(!op->getNumRegions());
      std::vector<Type> result_types;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

         */
        @JvmStatic
        @JvmName("create")
        fun String.toRequestBody(contentType: MediaType? = null): RequestBody {
          val (charset, finalContentType) = contentType.chooseCharset()
          val bytes = toByteArray(charset)
          return bytes.toRequestBody(finalContentType, 0, bytes.size)
        }
    
        @JvmStatic
        @JvmName("create")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/use.go

    				nKept++
    			} else {
    				wf.DropUse(dir)
    			}
    		}
    		if keepDir != "" && nKept != 1 {
    			// If we kept more than one copy, delete them all.
    			// We'll recreate a unique copy with AddUse.
    			if nKept > 1 {
    				wf.DropUse(keepDir)
    			}
    			wf.AddUse(keepDir, "")
    		}
    	}
    
    	// Read the Go versions from all the use entries, old and new (but not dropped).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. cluster/addons/addon-manager/kube-addons-test.sh

      create_resource_from_string "${limitrange}" "10" "1" "limitrange.yaml" "${TEST_NS}"
      if ! (kubectl get limits/limits -n "${TEST_NS}"); then
        error "failed to create limits w/ EnsureExists"
        return 1
      elif ! (kubectl get limits/limits2 -n "${TEST_NS}"); then
        error "failed to create limits2 w/ Reconcile"
        return 1
      fi
    
      # Changes to addons with mode EnsureExists should NOT be reflected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/gofmt/rewrite.go

    			val = subst(m, repl, reflect.ValueOf(val.Interface().(ast.Node).Pos()))
    		}
    		return val
    	}
    
    	r := apply(rewriteVal, reflect.ValueOf(p)).Interface().(*ast.File)
    	r.Comments = cmap.Filter(r).Comments() // recreate comments list
    	return r
    }
    
    // set is a wrapper for x.Set(y); it protects the caller from panics if x cannot be changed to y.
    func set(x, y reflect.Value) {
    	// don't bother if x cannot be set or y is invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-go-create-without-running-g.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Regression test for an issue found in development.
    //
    // GoCreate events can happen on bare Ps in a variety of situations and
    // and earlier version of the parser assumed this wasn't possible. At
    // the time of writing, one such example is goroutines created by expiring
    // timers.
    
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 996 bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-go-create-without-running-g.test

    -- expect --
    SUCCESS
    -- trace --
    Trace Go1.22
    EventBatch gen=1 m=0 time=0 size=17
    ProcStatus dt=1 p=0 pstatus=1
    GoCreate dt=1 new_g=5 new_stack=0 stack=0
    GoStart dt=1 g=5 g_seq=1
    GoStop dt=1 reason_string=1 stack=0
    EventBatch gen=1 m=18446744073709551615 time=0 size=5
    Frequency freq=15625000
    EventBatch gen=1 m=18446744073709551615 time=0 size=1
    Stacks
    EventBatch gen=1 m=18446744073709551615 time=0 size=12
    Strings
    String id=1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 446 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonLifecycleSpec.groovy

                deleteFile(registry)
            }
    
            then:
            stopped()
        }
    
        def "daemon stops after current build if registry is deleted and recreated"() {
            when:
            startBuild()
            waitForBuildToWait()
    
            then:
            busy()
            daemonContext {
                File registry = new DaemonDir(executer.daemonBaseDir).registry
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top